API Documentation
API reference for programmatic access to the Provisioning Platform.
Available APIs
- REST API - HTTP endpoints for all operations
- WebSocket API - Real-time event streams
- Extensions API - Extension integration interfaces
- SDKs - Client libraries for multiple languages
- Integration Examples - Code examples and patterns
Quick Start
# Check API health
curl http://localhost:9090/health
# List tasks via API
curl http://localhost:9090/tasks
# Submit workflow
curl -X POST http://localhost:9090/workflows/servers/create
-H "Content-Type: application/json"
-d '{"infra": "my-project", "servers": ["web-01"]}'
See REST API for complete endpoint documentation.