Some links are affiliate links. We only recommend networks we've tested. Read our methodology →
Anti-bot bypass

Rate Limiting

A server-side rule that throttles or blocks clients that send too many requests in a given time window. Forces scrapers to slow down or use proxies to distribute traffic.

Full definition

Rate limiting comes in two flavors. Per-IP rate limiting is what makes proxies useful — if a site allows 100 requests per minute per IP, you need a pool of 100 IPs to make 10,000 requests per minute. Per-account or per-API-key limiting is harder to bypass; it requires creating multiple accounts (often against ToS) or finding the unauthenticated public endpoints.

Symptoms of being rate-limited: HTTP 429 Too Many Requests, HTTP 403 Forbidden after a burst, response times suddenly increasing 10×, or the destination site silently returning empty results. Always log response status codes when scraping — silent failures are the worst kind.

Architecture: design your scraper to back off when you see 429s. Implement exponential backoff with jitter. Don't just rotate to a fresh proxy IP and retry instantly — that pattern is itself a bot signal.

Related terms

Residential Proxy
A proxy whose IP address belongs to a real consumer ISP and is assigned to a real home internet conn…
Sticky Session
A configuration where the same proxy IP is reused across multiple requests for a defined window (e.g…
Web Scraping
The automated extraction of data from websites — typically by sending HTTP requests, parsing the res…

What's next

Use this knowledge in context: browse our directory of tested providers, or take the 60-second wizard for a tailored recommendation.

Browse providers Take the wizard Back to glossary