Skip to main content

Rate Limits

LimitValue
Per endpoint, per second1 request
Per endpoint, per day128 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.