Skip to main content

Rate Limits

The Gomry API enforces rate limits to ensure fair usage and service stability.

Current Limits

When you exceed the rate limit, the API returns a 429 Too Many Requests response:

Best Practices

Batch where possible

Use list endpoints with pagination instead of fetching resources one by one.

Cache responses

Cache API responses on your end to reduce the number of requests, especially for data that doesn’t change frequently (events, ticket classes).

Use exponential backoff

When you receive a 429, wait before retrying. Double the wait time on each subsequent retry.

Spread requests over time

If syncing large datasets, spread requests evenly rather than bursting all at once.

Retry Strategy Example