1015: You Are Being Rate LimitedError 1015 means the visitor has exceeded the rate limit configured by the site owner using Cloudflare's Rate Limiting feature. The site owner defines thresholds (e.g., 100 requests per minute to a specific URL pattern) and when a visitor exceeds that threshold, Cloudflare blocks subsequent requests for a configurable timeout period. This is a deliberate protection mechanism against abuse, brute-force attacks, and API overuse.
Error 1015: You Are Being Rate LimitedGET /search?q=test HTTP/1.1
Host: www.example.com
User-Agent: Mozilla/5.0
Accept: text/htmlHTTP/1.1 429 Too Many Requests
Server: cloudflare
CF-RAY: 7f8a9b0c1d2e3456-SIN
Retry-After: 60
Content-Type: text/html
<!doctype html>
<html>
<head>
<title>www.example.com | Error 1015</title>
</head>
<body>
<h1>Error 1015: You are being rate limited</h1>
<p>You have sent too many requests. Please wait a moment before trying again.</p>
</body>
</html>Rate limits typically have a timeout period (e.g., 60 seconds). Wait for the timeout to expire and then resume normal browsing at a slower pace.
If running an automated tool, add delays between requests to stay below the rate limit. Implement exponential backoff when receiving 429 responses.
If you are on a corporate or shared network, the combined traffic from all users may be triggering the limit.
Check Your IPCheck Security > WAF > Rate Limiting Rules in the Cloudflare dashboard. Ensure thresholds are appropriate and not blocking legitimate traffic.
The visitor (or their application/script) sent more requests than the site owner's rate limit allows within the defined time window.
A scraper, crawler, or automated tool is making rapid requests that exceed the rate limit threshold.
When multiple users share the same IP (e.g., corporate NAT, mobile carrier), their combined requests may exceed the rate limit even though each individual user's traffic is reasonable.
The request was blocked by a Cloudflare WAF or firewall rule configured by the site owner.
Access was denied based on the visitor's activity being flagged as malicious by Cloudflare.
The site owner has blocked the visitor's IP address using Cloudflare's firewall tools.
This reference was compiled from official RFCs, protocol specifications, and hands-on troubleshooting experience. AI tools were used primarily for formatting and organizing the content on the page.