Limitations
Rate limits
POST Endpoint
Requests per minute
GET Endpoint
Requests per minute
Burst
POST Endpoint
Requests
GET Endpoint
Requests
Last updated
Was this helpful?
To maintain system stability and performance, the Tournament Profiling API enforces rate limits on incoming requests. If the rate limit is exceeded, the API will return a HTTP 429 Too Many Requests response, and further requests will be throttled until the rate limit window resets. Implement exponential backoff strategies in your applications to handle rate limiting gracefully.
15
1
The rate limit controls sustained traffic over time, while the burst limit defines the number of requests the API can handle concurrently, meaning requests run in parallel. If the burst limit is exceeded, the system responds with HTTP 429 Too Many Requests . These limits together provide more robust and flexible traffic control, especially in scenarios with variable or unpredictable load.
15
1
Last updated
Was this helpful?
Was this helpful?