Documentation Index
Fetch the complete documentation index at: https://cryptorobot.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Platform Architecture
Cryptorobot.ai is built on a real-time microservices architecture. The API supports both REST and WebSocket transports, giving you flexibility in how you consume data.Transports
REST API
Standard HTTP requests with JSON responses. Best for CRUD operations, one-off queries, and server-to-server integration.
WebSocket
Persistent connections with real-time event streaming. Best for live price feeds, trade notifications, and bot status updates.
REST Conventions
The API follows RESTful conventions for all resources:| Action | HTTP Method | Path | Description |
|---|---|---|---|
| Find | GET | /resource | List resources (paginated) |
| Get | GET | /resource/:id | Get a single resource |
| Create | POST | /resource | Create a new resource |
| Patch | PATCH | /resource/:id | Partially update a resource |
| Remove | DELETE | /resource/:id | Delete a resource |
Pagination
Allfind (list) endpoints return paginated results:
| Parameter | Type | Default | Description |
|---|---|---|---|
$limit | integer | 25 | Max items per page (max 100) |
$skip | integer | 0 | Number of items to skip |
$sort[field] | 1 or -1 | — | Sort by field (1=asc, -1=desc) |
$select[] | string | — | Fields to include in response |
Filtering
Query parameters support rich filtering:$gt, $gte, $lt, $lte, $ne, $in, $nin, $or.
Core Resources
Exchanges
Exchanges
Exchange connections represent your linked cryptocurrency exchange accounts (Binance, Bybit, OKX, etc.). Through these, you can fetch balances, market data, and execute trades.
Strategies
Strategies
Trading strategies define the rules for automated trading. They include technical indicators, entry/exit conditions, and risk parameters. Strategies can be backtested, optimized with hyperparameter tuning, or generated by AI.
Traders & Pods
Traders & Pods
Traders are live trading bot instances. Each trader runs inside a Pod — an isolated execution environment with its own configuration, API keys, and event stream.
Models & Signals
Models & Signals
Machine learning models that generate trading signals. You can subscribe to signals and receive real-time notifications when conditions are met.
Insights
Insights
Market intelligence data including ETF flows, fear & greed index, crypto stress index, global market stats, and curated news feeds.
Portfolio
Portfolio
Aggregate view of your holdings across all connected exchanges, including balance time-series, performance metrics, and trade history.
Data Flow
Rate Limits
| Tier | Requests/min | WebSocket connections |
|---|---|---|
| Free | 60 | 1 |
| Pro | 300 | 5 |
| Enterprise | 1000 | 25 |

