Apodex API · v1
Build with the Apodex API
OpenAI-compatible chat completions with built-in research, reasoning and tool use. One key, one base URL, streaming by default.
Base URL
https://api.apodex.ai/v1
Auth
Bearer <API key>
Streaming
SSE, on by default
Start here
Three steps, about two minutes.- 1
- 2Send your first request
POST to /chat/completions with any OpenAI-compatible client.
- 3
curl https://api.apodex.ai/v1/chat/completions \
-H "Authorization: Bearer $APODEX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "apodex-1-1-deep-research",
"messages": [{"role": "user", "content": "Hello!"}],
"stream": true
}'Explore the docs
Same grouping as the sidebar.Get started
QuickstartFirst request in cURL, Python or JavaScript.AuthenticationLearn how to obtain and use API keys to authenticate your requests securely.Workflows, agents & stepsThe three objects every response is built from.Deep Research
Chat CompletionsOpenAI-compatible chat completions with built-in reasoning, tool use, and streaming.Responses APIDisconnect-safe background task execution for long-running completions, with submit / resume / cancel.Core Models
OpenAI-compatible APIapodex-1.1 and apodex-1.1-mini — OpenAI-compatible access to the models themselves, with native sampling parameters and real HTTP error codes.Anthropic MessagesPOST /v1/messages served natively — use the Anthropic SDKs or Claude Code against the Apodex core models.Guides
StreamingHow to consume SSE streams — chunk format, lifecycle, heartbeats, and best practices.Rate LimitsAccount-level concurrency and TPM limits, the 429 contract, and how to back off correctly.PricingPer-token usage pricing — no subscriptions, no minimums.SDKs & toolsComing soon — use any OpenAI SDK today.