Rate limiting throttles requests per API key — 100 per day on free tier, 10,000 per day on pro tier — resetting at midnight UTC and returning HTTP 429 on exceed.
What is Rate Limiting?
Quick answer
Rate limiting throttles requests per API key — 100 per day on free tier, 10,000 per day on pro tier — resetting at midnight UTC and returning HTTP 429 on exceed.
Full definition
Limits are enforced in Redis with a rolling counter keyed by API-key hash. When the counter trips, the gateway returns 429 Too Many Requests with a Retry-After header pointing at the next reset. Metered billing is deliberately separate: you can be within your rate limit and still hit a token budget cap or a spend ceiling.
FAQ
Rate Limiting FAQ.
Common questions about Rate Limiting in the AGNT platform.
Rate limiting throttles requests per API key — 100 per day on free tier, 10,000 per day on pro tier — resetting at midnight UTC and returning HTTP 429 on exceed.
People also ask.
Source: agnt-backend/app/core/limiter.py
Share as social post
What is Rate Limiting? Rate limiting throttles requests per API key — 100 per day on free tier, 10,000 per day on pro tier — resetting at midnight UTC and returning HTTP 429 on exceed. https://agntdot.com/glossary/rate-limiting
228 / 280 chars
See it in action.
Now you know what Rate Limiting means. Try the live scan demo or read the developer docs to go deeper.