homedocs
Quickstart
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
- Base URL:
https://api.cuecloud.io/v1 - Auth:
Authorization: Bearer cue_…from the console. - POST
/chat/completionswith a flagship model id.
Requests carry Authorization: Bearer cue_… from the console. Do not share keys across the team.
2. First request
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.
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.
| Id | Model | Best for |
|---|---|---|
deepseek-v4-pro | DeepSeek V4 Pro 0813 | Default agent loops, SWE workloads, long-context coding |
deepseek-v4-flash-0731 | DeepSeek V4 Flash 0731 | Faster agent loops where Flash quality is enough |
kimi-k2.7-code | Kimi K2.7 Code | Long-horizon coding agents, MCP tool loops, efficient thinking |
glm-5.2 | GLM 5.2 | Multi-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
| Code | Meaning |
|---|---|
401 | Missing or invalid cue_… key |
400 | Bad request or unknown model id |
503 | Capacity path unavailable — retry / check status |