Rate limits

Your add-on can make 500 API requests per 5 minutes. Once you exceed the limit, calls will return HTTP status 429 and a message telling you that you've been limited.

Additionally, API methods that involve sending messages to rooms or individual people are limited to 30 requests per minute as a means of preventing room "spam." This limit is room and person specific. Messages sent to one do not count against the limits for other recipients in your group.

Please let us know if you run in to any trouble -- we're pretty flexible.

How do I see my current usage?

Your current rate limit usage is returned in the response headers from each request you make. For example, for the overall resource limit:

1
2
HTTP/1.1 200 OK
X-Ratelimit-Limit: 500
X-Ratelimit-Remaining: 499
X-Ratelimit-Reset: 1366037820
...other headers not shown...
  • X-Ratelimit-Limit -- The number of requests you are allowed per 5 minutes.
  • X-Ratelimit-Remaining -- How many requests you can make before hitting the limit.
  • X-Ratelimit-Reset -- The next time (as a Unix timestamp) the limit will be updated.

For the room specific notification limits.

1
2
HTTP/1.1 200 OK
X-FloodControl-Limit: 30
X-FloodControl-Remaining: 8
X-FloodControl-Reset: 1366037820
...other headers not shown...
  • X-FloodControl-Limit -- The number of messages you are allowed to send per minute to a given room.
  • X-FloodControl-Remaining -- How many requests you can make before hitting the limit.
  • X-FloodControl-Reset -- The next time (as a Unix timestamp) the limit will be updated

Rate this page: