Rate Limits
This API has strict rate limiting and only allows for 10 requests per minute per
X-Enderpay-Api-Key
on plugin related endpoints and 10 requests per minute per IP address on generic endpoints. The HTTP status code 429 Too Many Requests
will be sent if rate limiting occurs.{
"status": 429,
"message": "Too many requests."
}
Rate limit headers have also been added to API responses.
Header | Description |
X-RateLimit-Limit | Amount of requests you are allowed to make per minute. |
X-RateLimit-Remaining | Amount of requests you have remaining in the minute. |
Retry-After | Amount of seconds you should wait before sending your next request. This header is only added if you trigger rate limiting. |
Last modified 1yr ago