Skip to main content
By default, Pixelcut API is rate limited (commonly 5 requests/second per account). If you exceed the limit, you’ll receive a 429 with error_code: rate_limit_exceeded.
  • Retry only on retryable responses (typically 429 and transient 5xx)
  • Use exponential backoff with jitter
  • Add a max retry count and a max backoff cap

Example backoff logic

Example (Node)

Batch / high-throughput processing