The Rate Limiting policy controls the number of requests an API will accept within a defined timeframe. Requests exceeding the set limit are rejected to maintain optimal performance.
What's New#
New Rate Limiting Rule: When any third-party system calls our API, we have introduced a restriction of 60 requests
per application per store. Currently, this is only active for product endpoints. We will inform you when additional endpoints are included in this policy.
Quota and Throttling Policy#
The Throttling policy temporarily holds requests that exceed the rate limit, retrying them within a set timeframe. After multiple retry attempts without success, the request is finally rejected. You can adjust:Retry Delay: The time between retries
Retry Limit: The maximum number of retries
This feature protects our backend, ensuring smooth performance for other users.💡 Exceptions#
We understand there may be cases that require exceptions. If you believe you have a valid case, please email us with details, and we will evaluate accordingly.
Zid's Rate Limiting Algorithm#
At Zid, we implement the Leaky Bucket Algorithm for rate limiting. Wikipedia describes this algorithm as follows:From Wikipedia: The Leaky Bucket algorithm is analogous to a bucket with a small leak. It overflows if the inflow rate exceeds the leak rate or if an excess amount is added all at once. This algorithm is useful for ensuring that event sequences adhere to specified average and peak rates, thus managing any variations.
Leaky Bucket Flow:
- Incoming requests are queued as if being added to a bucket.
- The bucket "leaks" requests at a consistent rate.
- When the bucket is full, additional requests are rejected.
Polling vs. Webhooks#
📊 Polling#
Polling periodically makes requests to check for updates or new data. If new data exists, the system returns it in the response payload. Otherwise, no response is given.📬 Webhooks#
Webhooks simplify tracking data changes by notifying your app directly when status updates occur, reducing the need for repeated calls to our API.⚠️ Important#
Avoid Frequent Requests: To prevent system overload, please refrain from repeatedly checking for status updates. For tracking order or payment statuses, consider using our robust Webhook APIs instead.
Modified at 2024-10-31 08:09:35