Skip to main content
This walks through your first few calls with a personal access token. Export it first:
1

Verify your token

Returns your identity, workspace, and onboarding state.
2

List your agents

Each agent has an id, slug, name, model, and status. Copy an id for the next step.
3

Start a conversation

Returns the new conversation’s id.
4

Send a message

This returns 202 Accepted with a stream_url — the turn runs server-side on the agent’s machine.
The reply doesn’t come back in that response — you read it live over the event stream.

Stream the reply

Open the conversation’s event stream and render the agent’s response as it happens.