Search docs

Search docs, endpoints, errors

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

  1. 1
    Create an API key

    Console → API Keys → Create new key. It is shown once.

    Open console
  2. 2
    Send your first request

    POST to /chat/completions with any OpenAI-compatible client.

  3. 3
    Read the stream

    Reasoning steps arrive first, then the answer, then [DONE].

    Streaming guide
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

Need something else?Try DeepResearchsupport@apodex.ai
Docs | Apodex API Platform