TagMangoTagMango Docs

Rate Limiting

API rate limits and best practices

The TagMango API enforces rate limits to ensure fair usage and platform stability.

Limits

Rate LimitWindow
120 requestsPer 10 seconds

When Rate Limited

You'll receive a 429 Too Many Requests response:

{
  "statusCode": 429,
  "message": "Too many requests, please try again later",
  "success": false
}

Best Practices

  • Cache responses where possible
  • Use webhooks instead of polling
  • Implement exponential backoff on retries
  • Spread requests evenly instead of bursting

On this page