Loading
OpenAI-compatible endpoints. Bring your own key, route to any of the wired providers, stream tokens back. The gateway is the same engine the apps use; the API just exposes it.
Quick start
$ curl https://agiworkforce.com/api/llm/v1/chat/completions \
-H "Authorization: Bearer $YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{ "model": "auto", "messages": [{"role":"user","content":"hello"}] }'Two credentials reach this API and they are not interchangeable. An AGI API key (sk_live_…, issued under Settings → API Keys) authenticates the model catalog, audio transcriptions, and the credit balance. Chat completions and embeddings take a session bearer token. Every operation in the bundle below names the credential it accepts.
Reference
The OpenAPI 3 bundle is published. It describes every endpoint that ships and the credential each one takes. There is no Postman collection and no client SDK — call the REST endpoints directly.