Rate limits

Rate limiting is a technique employed by APIs to manage the volume and frequency of incoming requests, ensuring a stable and high-quality experience for all users. It helps prevent resource starvation, maintain cost control, and provide a layer of security against potential attacks.

To ensure fair usage, prevent system overloading, and protect API resources, our API has rate limits that limit the number of requests that can be made within a specific time frame. Please keep in mind that there are different rate limits for Shipping-related endpoints to meet their specific requirements. Rate limits are specified in the following format:

  • Safe requests (GET): 1000 requests per minute
  • Unsafe requests (POST/PATCH/PUT/DELETE): 100 requests per minute.
  • Shipping-related safe requests (GET): 420 requests per minute.
  • Shipping-related unsafe requests (POST/PATCH/PUT/DELETE): 100 requests per minute.

Endpoints that are considered unsafe have a configured burst allowance. This allowance sets the maximum number of concurrent requests the API can handle. Allowing for a temporary increase in the request rate to accommodate short periods of high traffic without exceeding the overall rate limits.

  • Unsafe requests (POST/PATCH/PUT/DELETE): 15 requests per second.
  • Shipping-related unsafe requests (POST/PATCH/PUT/DELETE): 15 requests per second.
It is essential to follow these guidelines to avoid exceeding the API rate limits and receiving HTTP 429 responses. Failure to comply may disrupt your API usage and lower service quality.
  • To avoid getting blocked or throttled, it is important to adhere to the rate limits that are set. These limits specify the maximum number of requests allowed within a certain period. Please make sure that your application stays within these limits.
  • It’s important to handle rate-limit responses properly. If you receive an HTTP 429 (Too Many Requests) response, the rate limit has been surpassed.
  • Regularly monitor and analyze your application’s rate limit usage to identify potential bottlenecks or excessive usage patterns. This will help you proactively adjust your application’s behavior and optimize resource consumption.

To ensure a seamless integration with the API and make the most of its resources, it’s important to follow the guidelines and stay within the API rate limits. This will help prevent any interruptions and maintain optimal usage.

Go to top