Documentation
Build with Verboo Code
From first request to production: an OpenAI-compatible API, practical examples, CLI, and integrations.
Your first response in minutes
Create an API key, choose an ID returned by /models, and run one of the examples.
cURL
curl https://code.verboo.ai/router/v1/chat/completions \
-H "Authorization: Bearer $VERBOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "<MODEL_ID>",
"messages": [{"role": "user", "content": "Explain why low latency matters for developer tools."}]
}'Explore the documentation
API reference
Endpoints, parameters, responses, and errors.
OpenAI SDK
Python and TypeScript with the Verboo base URL.
Streaming
Render tokens as soon as they arrive.
Tool calling
Connect the model to application functions.
CLI
Use the coding agent directly in your terminal.
Integrations
Cursor, OpenClaw, and Hermes.
A clear contract
The base URL is stable and the OpenAPI contract can be used in generators, clients, and testing tools.
Base URL
https://code.verboo.ai/router/v1Protect your key
Use the VERBOO_API_KEY environment variable. Never expose the key in browser code, commits, logs, or screenshots.