API Rate Limits#
To ensure fair usage and maintain performance for all users, certain API endpoints are subject to rate limits. These limits restrict the number of requests that can be made to specific endpoints within a defined time period. Exceeding the rate limit will result in a 429 Too Many Attempts error response.Understanding Rate Limits#
Each rate-limited endpoint has a defined threshold, typically measured in requests per minute or requests per hour. If your application exceeds this threshold, further requests will be temporarily blocked until the limit resets.To avoid exceeding rate limits:#
Implement retry logic with exponential backoff.
Monitor your usage patterns and adjust your requests accordingly.Rate-Limited Endpoints#
Below is a table of API endpoints with their respective rate limits:Endpoint | Limit | Time Window |
---|
/token | 5 requests | Per minute |
/packages | 40 requests | Per minute |
/sims/:iccid/usage | 1 requests | Per 15 minutes for the same iccid |
sims/:iccid/packages | 1 requests | Per 15 minutes for the same iccid |
Modified at 2024-12-16 13:51:23