verboo code

Documentation

Build with Verboo Code

From first request to production: an OpenAI-compatible API, practical examples, CLI, and integrations.

On this page

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

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/v1

Protect your key

Use the VERBOO_API_KEY environment variable. Never expose the key in browser code, commits, logs, or screenshots.