Rate Limiting

Our APIs are rate-limited. Currently we have a rate-limit of 100 requests per minute across all applications of a single user in place:

  • rateLimit: 100
  • rateLimitIntervalInSeconds: 60

This means that you can perform 100 calls to our API within 60 seconds (1 minute) before you get rate-limited (until the next 60 second block starts).

💡

Rate limits might change in the future.

Pagination

All endpoints that return a collection are paginated using Offset Pagination.