homedocs

Docs

Minimum API surface. Compatible with supported OpenAI-style clients. Pack: $0.50/M · $500 = 1B combined in+out this period. Full reference on the API page.

1. Point at Cue Cloud

  1. Base URL: https://api.cuecloud.io/v1
  2. Auth: Authorization: Bearer cue_… from the console.
  3. POST /chat/completions with a flagship model id.

Requests carry Authorization: Bearer cue_… from the console. Do not share keys across the team.

2. First request

curl · deepseek-v4-pro
curl https://api.cuecloud.io/v1/chat/completions \
  -H "Authorization: Bearer cue_••••••••" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-pro",
    "messages": [
      { "role": "user", "content": "fix the failing test" }
    ]
  }'

3. Stream

Set stream: true for SSE token chunks. The normal path for IDE agents. Non-streaming completions work for scripts.

stream sketch · deepseek-v4-pro
curl https://api.cuecloud.io/v1/chat/completions \
  -H "Authorization: Bearer cue_••••••••" \
  -H "Content-Type: application/json" \
  -N \
  -d '{
    "model": "deepseek-v4-pro",
    "stream": true,
    "messages": [
      { "role": "user", "content": "refactor this module" }
    ]
  }'

Models

Open Hub checkpoints we deploy. Specs on models.md.

IdModelBest for
deepseek-v4-proDeepSeek V4 Pro 0813Default agent loops, SWE workloads, long-context coding
deepseek-v4-flash-0731DeepSeek V4 Flash 0731Faster agent loops where Flash quality is enough
kimi-k2.7-codeKimi K2.7 CodeLong-horizon coding agents, MCP tool loops, efficient thinking
glm-5.2GLM 5.2Multi-hour agent sessions, planning, 1M-context engineering

Clients

Compatible with supported OpenAI-style clients. Tested or documented on the API page: CueCode, Cursor, scripts. Other OpenAI-compatible tools are expected, not claimed here.

  • Cursor. Add an OpenAI-compatible provider. Base URL → Cue Cloud. API key → your cue_… key. Model → one of the flagship ids.
  • CueCode. Cloud mode on Cue Cloud. Same models and pack include; CueCode can send denser agent signals for this stack.
  • Scripts & tools. Any OpenAI SDK or raw HTTP client works. Use it in CI or custom agents — the load we optimize for is still IDE coding.

Errors

CodeMeaning
401Missing or invalid cue_… key
400Bad request or unknown model id
503Capacity path unavailable — retry / check status

Support

[email protected] · API overview · Pricing

change theme