Quickstart

Send your first request in a minute.

Get from zero to a streaming response in a minute.

1. Create an API key

Open the console keys page and create a key. It looks like sk-aivo_...; copy it once — the full value is shown only at creation.

2. Call the gateway

[OI]-compatible (chat completions):

curl https://api.aivokey.dev/v1/chat/completions \
  -H "Authorization: Bearer sk-aivo_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-pro",
    "stream": true,
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Anthropic-compatible (messages):

curl https://api.aivokey.dev/v1/messages \
  -H "x-api-key: sk-aivo_..." \
  -H "anthropic-version: 2023-06-01" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-pro",
    "max_tokens": 1024,
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

3. Point your tool at it

Any [OI]-compatible client works: set the base URL to https://api.aivokey.dev/v1 and the API key to your AivoKey key. See Configure your agent for OpenCode, [CC], and Codex.