Rate Limiting & Pagination
API rate limits and how to paginate results
Rate Limits
| Limit | Value |
|---|---|
| Per endpoint, per second | 1 request |
| Per endpoint, per day | 128 requests |
If exceeded, the API responds with HTTP 429 Too Many Requests. Contact Zodia to adjust limits for specific endpoints.
Pagination
For endpoints returning lists, use paginationLimit and paginationOffset in the request payload.
{
"currencies": ["BTC"],
"paginationLimit": 10,
"paginationOffset": 0
}paginationOffset is zero-based: 0 = first page, 1 = second page, and so on.