36.4%

Not from Perplexity AI

7

Verified source IPs

19

Impostor source IPs

Yes

Published IP ranges

Measured across WebDecoy's production detection corpus, 2025-11-14 to 2026-08-19.

What PerplexityBot is

Indexes pages so Perplexity can cite them in answers.

It identifies itself with a User-Agent containing PerplexityBot/1.0; +https://perplexity.ai/perplexitybot, and honours the robots.txt token PerplexityBot. Operator documentation: Perplexity AI.

How much of this traffic is actually PerplexityBot

Perplexity AI publishes the IP ranges its crawler operates from, so this has a real answer rather than an opinion. We took every request in our corpus declaring this User-Agent and checked its source address against that published list.

ResultSource addressesShare of traffic
Verified. Inside a published Perplexity AI range763.6%
Failed. Outside every published range1936.4%

36.4% of traffic claiming to be PerplexityBot could not be traced back to Perplexity AI. It is something else wearing the name. Most sites wave this User-Agent straight through without checking, which is exactly why the name is worth wearing.

Verifying it yourself

Fetch the published ranges and test the source address against them:

# 1. fetch the published ranges
curl -s -o ranges.json \
  https://www.perplexity.com/perplexitybot.json

# 2. check an address against them
python3 - 203.0.113.42 <<'PY'
import json, sys, ipaddress
ip = ipaddress.ip_address(sys.argv[1])
data = json.load(open('ranges.json'))
hit = False
for p in data['prefixes']:
    net = p.get('ipv4Prefix') or p['ipv6Prefix']
    if ip in ipaddress.ip_network(net):
        hit = True
print('verified' if hit else 'NOT VERIFIED')
PY

Swap in the address you are checking. Never trust the User-Agent on its own. It is a header the client picks for itself, and as the numbers above show, plenty of clients pick a lie.

Blocking it

If you want the real crawler to stay away, robots.txt is the polite way to ask:

User-agent: PerplexityBot
Disallow: /

That only works on a crawler willing to obey it, which rules out every request that was already lying about who it is. Stopping those takes enforcement at the network or application layer, keyed on something the client cannot simply retype. That is the problem WebDecoy exists to solve.

For the wider picture, see how to detect AI scrapers across GPTBot, ClaudeBot and Perplexity, or the mechanics of cryptographically verifying a trusted bot rather than taking its word for it.

Frequently Asked Questions

Is PerplexityBot a real crawler or is it being faked? +

Both. PerplexityBot is a genuine crawler operated by Perplexity AI, but 36.4% of the traffic we observed carrying its User-Agent did not come from an IP address in Perplexity AI's published range list. Only 7 of the source addresses using this name verified against that list; 19 did not. A User-Agent string is a claim, not proof.

How do I verify PerplexityBot myself? +

Perplexity AI publishes its crawler IP ranges at https://www.perplexity.com/perplexitybot.json. Take the source IP of the request, check whether it falls inside one of the published prefixes, and reject it if it does not. Never match on the User-Agent string alone, because that is the part attackers control.

Should I block PerplexityBot? +

That depends on what it does for you. Indexes pages so Perplexity can cite them in answers. Blocking the verified traffic is a business decision, and only you can make it. Blocking the unverified traffic is not much of a decision at all, because requests that only claim to be PerplexityBot bring none of the upside.

Does PerplexityBot respect robots.txt? +

Perplexity AI says it does, and you can disallow it with the token PerplexityBot. We are not claiming to have checked. Proving compliance needs a disallowed path to watch, and the sites in this corpus disallow nothing, so no crawler had anything to violate. Treat published compliance as a vendor statement until someone measures it. What the data here answers is the question that comes first: whether a request came from Perplexity AI at all.

Methodology

Every request in WebDecoy's production detection corpus whose User-Agent declares one of these crawlers, checked IP-by-IP against the operator's own published IP range list. A request is counted as verified when its source IP falls inside a published prefix, and forged when it does not. Operators that publish no machine-readable range list cannot be checked this way and are reported without a forgery figure. Corpus: 81,034 detections from 17,187 distinct addresses, 2025-11-14 to 2026-08-19. Published ranges retrieved 2026-08-19. Operators revise their ranges over time, so a request logged months ago is checked against today's list; we re-ran the comparison over a recent 30-day window and the rates held.

Other crawlers

← All crawlers

See which PerplexityBot requests are real

WebDecoy verifies declared crawlers against published ranges and identifies the ones that fail, as persistent actors rather than disposable IPs.

Start Free Trial