Docs
Developer docs and quickstart.
Sepurux API docs are available from the backend service. Start with OpenAPI, then run your first campaign.
Interactive API docs
Explore endpoints and schemas in Swagger UI.
OpenAPI schema
Use the OpenAPI document for SDKs or CI validation.
Quickstart
See architecture# 1) create trace
curl -X POST http://localhost:8000/v1/traces \
-H 'Content-Type: application/json' \
-H 'X-API-Key: <api_key>' \
-H 'X-Project-Id: <project_id>' \
-d '{"event":"demo"}'
# 2) create campaign
curl -X POST http://localhost:8000/v1/campaigns ...
# 3) queue run
curl -X POST http://localhost:8000/v1/runs ...
# 4) inspect stats
curl http://localhost:8000/v1/runs/<run_id>/stats