Documentation Index
Fetch the complete documentation index at: https://docs.raccoonai.tech/llms.txt
Use this file to discover all available pages before exploring further.
Agents API is currently in early beta. The API may change before general availability.
Key Concepts
Sessions
Persistent workspaces identified by a UUID. The agent maintains context across turns: files, conversation history, credentials and processes persist.Turns
Single request-response cycles. Each turn builds on previous context within the same session. The agent sees prior work and continues incrementally.Modes
Control how the agent works:| Mode | Use case |
|---|---|
auto | General-purpose (default) |
code | Software development |
deepsearch | Research and analysis |
slides | Presentations |
plan | Planning before execution |
How It Works
Stream results
Connect to
wss://api.raccoonai.tech/ws/sessions/{sessionId} to receive events as the agent executes.Endpoints
| Method | Endpoint | Description |
|---|---|---|
POST | /sessions/new | Start a turn |
GET | /sessions | List sessions |
GET | /sessions/{sessionId} | Get session details |
PUT | /sessions/{sessionId}/title | Rename session |
DEL | /sessions/{sessionId} | Delete session |
PUT | /media/upload | Upload files |
WSS | /ws/sessions/{sessionId} | Real-time events |
Rate Limits
Rate limits are enforced based on your plan. TheX-Rate-Limit-Max-Concurrent header indicates the maximum turns you can run simultaneously. Exceeding limits returns 429 with an X-Rate-Limit-Retry-After header.
For custom limits and pricing, contact sales.
