Rate Limiting

Our API has a rate limit of 120 requests per minute so that one user cannot hog the API by sending a lot of requests, affecting other users in the process. Each response will contain the following headers:

  • X-Rate-Limit-Limit: The rate limit ceiling for this endpoint.

  • X-Rate-Limit-Remaining: The number of requests left for the time window.

  • X-Rate-Limit-Reset: The remaining window before the rate limit resets, in UTC epoch seconds.

If you exceed the rate limit, you will receive 429 Too Many Requests until the current time window has ended.

Feedback

If you have any feedback or suggestions, feel free to contact us at api@teamwork.com.