/
). This is to avoid an extra round trip before auction winners are returned.
For example, when you want to run an auction, use /v2/auctions
, not /v2/auctions/
.
Using an URL with a trailing slash will result in a 404 Not Found
error.
Environment | Endpoint | Rate Limit |
---|---|---|
Sandbox | Catalog API | 4 rps |
Sandbox | Other Advanced APIs | 5 requests every 2 seconds |
Sandbox | Auctions and Events | No rate limit |
Production | Catalog API | 10 rps |
Production | Other Advanced APIs | 45 requests every 2 seconds |
Production | Auctions and Events | No rate limit |
X-RateLimit-Limit
- total number of requests allowed for the time periodX-RateLimit-Remaining
- remaining number of requests for the time periodX-RateLimit-Reset
- when you can make another request429 Too Many Requests
response. To handle this, you can implement a retry mechanism with an exponential backoff strategy. This will help you to avoid hitting the rate limit again.
Here is an example of how you can implement this in Typescript: