Overview
The Tight API uses a number of safeguards against bursts of incoming traffic to help maximize its stability. If you send many requests in quick succession, you might see error responses with status code429.
The limit is 1000 requests over a five minute window, scoped to a Tight API access_token.
Handling limits gracefully
A basic technique for integrations to gracefully handle limiting is to watch for429 status codes and build in a retry mechanism. The retry mechanism should follow an exponential backoff schedule to reduce request volume when necessary.
Here is an example of exponential backoff in JavaScript: