Rate Limiting
The Payless API enforces a rate limit of 100 requests per second per API key. Exceeding this threshold triggers a 429 Too Many Requests
response code. The response includes a Retry-After
header indicating when to resume requests:
{
"error": {
"code": "rate_limit_exceeded",
"message": "Request rate limit exceeded. Please retry after 60 seconds.",
"retry_after": 60
}
}