API Reference
The Octavus API is a RESTful API that enables programmatic access to agent management and session execution.
Base URL
text
Authentication
All API requests require authentication using a Bearer token:
bash
API keys can be created in the Octavus Platform under your project's API Keys page.
Response Format
All responses are JSON. Success responses return the data directly (not wrapped in a data field).
Success Response
json
Error Response
json
HTTP Status Codes
| Code | Description |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Missing or invalid API key |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found |
| 500 | Internal Server Error |
Endpoints Overview
Agents
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/agents | List all agents |
| GET | /api/agents/:id | Get agent by ID |
| POST | /api/agents | Create agent |
| PATCH | /api/agents/:id | Update agent |
Sessions
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/agent-sessions | Create session |
| GET | /api/agent-sessions/:id | Get session state |
| POST | /api/agent-sessions/:id/trigger | Execute trigger (SSE) |
Streaming
The trigger endpoint returns Server-Sent Events (SSE):
bash
Response format:
text
SDKs
We recommend using our SDKs instead of calling the API directly:
- Server SDK:
@octavus/server-sdk- For Node.js backends - React SDK:
@octavus/react- For React applications - Client SDK:
@octavus/client-sdk- For other frontend frameworks
The SDKs handle authentication, streaming, and tool execution automatically.