What is Rate Limiting? #3634
-
|
What is Rate Limiting? |
Beta Was this translation helpful? Give feedback.
Answered by
NadeeshaMedagama
Jun 28, 2026
Replies: 1 comment
-
|
Rate limiting restricts how many requests a client can make within a specific time period. Example A login API may allow: 5 login attempts per minute After that: HTTP 429 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
malika1974
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rate limiting restricts how many requests a client can make within a specific time period.
Example
A login API may allow:
5 login attempts per minute
After that:
HTTP 429
Too Many Requests
Benefits
Prevents brute-force attacks
Protects APIs from abuse
Reduces server overload
Improves stability