API Reference Overview
The ZenOTC API provides RESTful endpoints for trading operations.
Quick Links
- Complete REST API Reference - Full documentation with request/response examples
- Interactive Notebook - Test the API directly in Google Colab
Base URLs
| Environment | URL |
|---|---|
| Production | https://api.zenotc.com |
| Staging | https://api-staging.zenotc.com |
Authentication
All requests require API key authentication via headers:
| Header | Description |
|---|---|
X-API-Key | Your API key |
X-API-Timestamp | Request timestamp (ms) |
X-API-Signature | HMAC-SHA256 signature |
Rate Limits
| Endpoint Type | Limit |
|---|---|
| Market Data | 30 req/s |
| Orders | 10 req/s |
| Portfolio | 10 req/s |
Response Format
{
"data": { ... },
"timestamp": "2024-01-15T10:30:00Z"
}