Home/Glossary/Rate Limiting
Glossary

Rate Limiting

Rate limiting is a technique used by API providers to control the number of requests a client can make within a specified time window - for example, 100 requests per minute. Rate limiting protects APIs from abuse, ensures fair usage among clients, and prevents server overload. When a client exceeds the rate limit, the API typically returns a 429 (Too Many Requests) status code. API providers communicate rate limits through response headers.

Related Terms

Related Articles