verboo code

Get started

API quickstart

Create a key, discover the models available to your account, and receive your first response.

On this page

1. Create and export your key

Create the key in the dashboard and copy the secret when it is shown. It will not be displayed again.

Environment variable
export VERBOO_API_KEY="<YOUR_API_KEY>"

2. List models

IDs and capabilities depend on the key. Use an exact ID returned by this request.

cURL
curl https://code.verboo.ai/router/v1/models \
  -H "Authorization: Bearer $VERBOO_API_KEY"

3. Make your first request

Replace <MODEL_ID> with a model returned in the previous step.

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."}]
  }'

Existing SDKs

Python and TypeScript use the official openai package. The only setup differences are base_url/baseURL and your Verboo Code key.

Next steps