Limitations
Rate limits
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.
POST Endpoint
15
GET Endpoint
1
Burst
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.
POST Endpoint
15
GET Endpoint
1
Last updated
Was this helpful?