Rate Limiting
Our APIs are rate-limited. Currently we have a rate-limit of 10 requests per minute across all applications of a single user in place:
rateLimit
: 10rateLimitIntervalInSeconds
: 60
This means that you can perform 10 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.