Rate Limit Error

Type URI
https://api.marketingpod.dev/problems/rate-limit-error
Status Code
429 Too Many Requests
Description
Rate limit exceeded. Maximum 10,000 requests per minute per IP address.

Example Response

{
  "type": "https://api.marketingpod.dev/problems/rate-limit-error",
  "title": "Rate Limit Error",
  "status": 429,
  "detail": "Rate limit exceeded. Maximum 10,000 requests per minute per IP address.",
  "instance": "/api/v1/integration/req_1704123456789_abc",
  "requestId": "req_1704123456789_abc",
  "timestamp": "2024-10-07T12:34:56.789Z",
  "retryAfter": 60,
  "limit": 10000,
  "window": "1 minute"
}

Common Causes

How to Fix

  1. Implement exponential backoff retry logic
  2. Wait for the duration specified in retryAfter before retrying
  3. Reduce the frequency of API calls
  4. Implement request queuing to stay within rate limits
  5. Contact support if you need higher rate limits

Related Errors


Need help? Contact developers@marketingpod.com and include the requestId from your error response.