The Boty API allows you to programmatically manage agents, conversations, and integrations.
Base URL
Authentication
All API requests require authentication using a Bearer token.
curl -X GET https://api.boty.chat/api/agents \
-H "Authorization: Bearer YOUR_API_TOKEN"
Getting Your API Token
- Go to Settings → API Keys in your dashboard
- Click Generate New Key
- Copy and securely store your token
Keep your API token secure. Never expose it in client-side code or public repositories.
All responses are JSON:
{
"success": true,
"data": { ... }
}
Error responses:
{
"success": false,
"error": "Error message"
}
Rate Limits
| Plan | Requests/minute |
|---|
| Free | 60 |
| Pro | 300 |
| Business | 1000 |
Content-Type: application/json
Authorization: Bearer YOUR_API_TOKEN
SDKs