Overview
The API is REST, returns JSON, and authenticates via JWT Bearer Token. All endpoints live under the/v2 prefix and follow standard HTTP conventions (verbs, status codes, headers).
Quickstart
Make your first call in under 5 minutes
Authentication
How to get and use your JWT token
API Reference
Hundreds of endpoints documented with examples
Service status
Real-time availability
Base URL
API standards
- Format: JSON in request and response
- Versioning:
/v2prefix (v1 is legacy, not documented) - Authentication:
Authorization: Bearer <token>on every call - Status codes: standard HTTP (2xx success, 4xx client error, 5xx server error)
- Timezone: the API normalizes everything to UTC (ISO 8601)
- Encoding: UTF-8
Limits and rate limiting
There is no aggressive rate limiting yet. We recommend nonetheless:- No more than 10 requests/second per token
- Use pagination (
page+pageSize) on large lists - Cache idempotent responses on your client

