Skip to content
  • There are no suggestions because the search field is empty.

Rate Limits

The WISEflow API implements a rate limiting mechanism to prevent abuse and ensure fair usage. The rate limits are defined per credential set, meaning that each set of credentials has its own limits.

Headers

The API responses include headers that indicate the current rate limit status:
  • RateLimit-Limit: Allowed limit in the timeframe.
  • RateLimit-Remaining: Number of available requests remaining.
  • RateLimit-Reset: The time remaining, in seconds, until the rate limit quota is reset.
There are also headers for the specific minute and second limits:
  • X-RateLimit-Minute-Limit: Allowed limit in the current minute.
  • X-RateLimit-Minute-Remaining: Number of requests remaining in the current minute.
  • X-RateLimit-Minute-Reset: The time remaining, in seconds, until the minute
  • X-RateLimit-Second-Limit: Allowed limit in the current second.
  • X-RateLimit-Second-Remaining: Number of requests remaining in the current second.
  • X-RateLimit-Second-Reset: The time remaining, in seconds, until the second quota is reset.

Quota

Each credential set is allowed:
  • 5000 requests per minute
  • 200 requests per second
Meaning that you can make up to 5000 requests in a minute, but no more than 200 requests in any single second.

If the limit is exceeded, the API will return a 429 Too Many Requests status code.

If you receive this status code, you should wait until the rate limit resets before making additional requests. The RateLimit-Reset header will indicate when the limit will reset.