Rate Limiting

Understand and configure rate limits in Gconv Prune

Overview

Rate limiting helps protect our APIs and ensure fair resource allocation across all users. This guide explains our rate limiting implementation and how to work with it effectively.

Rate Limits by Plan

Free Tier

  • 60 requests per minute
  • 1000 requests per day
  • Burst limit: 5 concurrent requests

Pro Tier

  • 300 requests per minute
  • 10000 requests per day
  • Burst limit: 20 concurrent requests

Rate Limit Headers

Our API includes rate limit information in response headers:

X-RateLimit-Limit: 60
X-RateLimit-Remaining: 59
X-RateLimit-Reset: 1516131940

Best Practices

  • Implement exponential backoff for retry logic
  • Cache responses when possible
  • Monitor your usage through dashboard
  • Set up alerts for rate limit warnings

Need Help?

For questions about rate limits, check our troubleshooting guide or contact our support team.