Rate Limiting
Understanding how we implement rate limits on the API
API requests are rate limited to 1 per second per account. We recommend you design your app to stagger requests to avoid hitting the rate limit.
Requests exceeding the rate limit will receive a response with a 429 status. You can try again once the time limit is up (1 second between requests). This rate limit may increase in future.