CONTINIUMDEVELOPER API
Decision simulation API reference
Production endpoints for third-party integrations: create an app, mint API keys, upsert end-users, run simulations, create snapshots, submit check-ins, and send feedback.
AUTH OVERVIEW
// App management (create app / mint keys)
Authorization: Bearer <Continium user token>
// Engine endpoints (simulate, snapshot, check-in, feedback)
X-API-Key: ck_<keyId>.<secret>
Apps and keys are created by a signed-in Continium user. Runtime engine calls use an API key.
BASE URL
BASE
https://<your-domain>/api
// All developer endpoints are under:
/api/dev/*If you host Continium behind a custom domain, use that domain.
ERRORS
{ "error": "Missing API key" }
{ "error": "Unauthorized" }
HTTP 429
{
"error": "rate_limit_exceeded",
"message": "Too many requests. Please slow down.",
"retry_after_seconds": 12
}Use Retry-After when present.
NEXT
Implementation notes
These routes are served by the Next.js app under /api/dev and proxy to the simulation engine. For app creation and key management, use the dashboard. For engine usage, store the API key securely and call from your backend.