Authentication
Every API request requires an API key passed as a Bearer token.Create an API key
Open the Playground page from the sidebar and click Generate API Key. The full key is shown once — copy it and store it securely. Generating a new key revokes the previous one. Each workspace has one active key at a time.Chat endpoint
Request
| Field | Type | Required | Description |
|---|---|---|---|
message | string | Yes | The query to send to the agent. |
conversation_id | string | No | UUID of an existing conversation. Omit to start a new one. |
Response
Errors
| Status | Meaning |
|---|---|
401 | Missing or invalid API key. |
400 | Empty message. |
404 | Agent not found or not in this workspace. |
500 | Server error. |
Examples
Multi-turn conversations
Pass theconversation_id from a previous response to continue the conversation. The agent retains the full message history for that conversation.