verboo code

Get started

Quickstart

From the terminal to your first response: set up Verboo Code in a few minutes.

On this page

Before you begin

You only need an active Verboo account and a local development environment.

  • A Verboo account with access to a plan.
  • Node.js and a terminal with internet access.
  • A project directory where the CLI can work.

Use the CLI

Install the CLI globally, enter your project folder, and start the agent.

Install and run
npm install -g @verboo/code
cd your-project
verboo

On first run, your browser opens to complete OAuth sign-in. To sign in again at any time, use:

Authentication
verboo /login

Create an API key

External tools use an API key from the plan you want to consume.

  1. Open the Verboo Code dashboard.
  2. Open API Keys and create a key for your plan.
  3. Copy the key immediately and store it somewhere safe.

The key is shown only once

If you lose it, revoke the key in the dashboard and create a new one. Do not share a key across people or projects unless necessary.

Make your first request

First, discover the models available to your API key. Use one of the returned IDs as <MODEL_ID> in the chat request.

List available models
curl https://code.verboo.ai/router/v1/models \
  -H "Authorization: Bearer <VERBOO_API_KEY>"
Send a message
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": "Hello"}]
  }'