The Boty API allows you to programmatically manage agents, conversations, and integrations.

Base URL

https://api.boty.chat

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

  1. Go to SettingsAPI Keys in your dashboard
  2. Click Generate New Key
  3. Copy and securely store your token
Keep your API token secure. Never expose it in client-side code or public repositories.

Response Format

All responses are JSON:
{
  "success": true,
  "data": { ... }
}
Error responses:
{
  "success": false,
  "error": "Error message"
}

Rate Limits

PlanRequests/minute
Free60
Pro300
Business1000

Common Headers

Content-Type: application/json
Authorization: Bearer YOUR_API_TOKEN

SDKs

JavaScript/Node.js

npm install @boty/sdk

Python

pip install boty-sdk