← AI crawler directory

Perplexity

PerplexityBot

IndexingPublished CIDRsVerified July 2026

What it is

PerplexityBot indexes pages for Perplexity search results and citations; Perplexity says it is not used for foundation-model training. Aiola classifies it as indexing because it supports a searchable retrieval index.

In Aiola's taxonomy, Indexing means crawled for ai or search indexing.

User agent

Look for the match token inside the complete HTTP User-Agent header. Tokens can be spoofed, so use the network checks below for authentication.

Full example User-Agent
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)
Case-insensitive match token
PerplexityBot

Official IP ranges

Perplexity publishes an official JSON feed. This cached snapshot contains 8 CIDR prefixes, last fetched 2026-07-11. Open the live source ↗

PerplexityBot CIDRs — snapshot fetched 2026-07-11
107.20.236.150/32
18.210.92.235/32
18.97.1.228/30
18.97.9.96/29
3.211.124.183/32
3.222.232.239/32
3.224.62.45/32
3.231.139.107/32

Verify authenticity

Start with the source IP recorded by your trusted edge or server, not an untrusted forwarded header.

Test one CIDR in Python (replace REQUEST_IP)
python3 -c 'import ipaddress; print(ipaddress.ip_address("REQUEST_IP") in ipaddress.ip_network("107.20.236.150/32"))'
Reverse- and forward-DNS double lookup
host REQUEST_IP
# Confirm the hostname ends in an official suffix
host RETURNED_HOSTNAME
# The forward lookup must return REQUEST_IP

For production checks, test against every current prefix in the vendor feed. Re-fetch feeds regularly: a July 2026 snapshot is evidence of publication, not a permanent firewall list.

Control it with robots.txt

Perplexity documents crawler controls for this bot family. Robots.txt can direct cooperative crawling, but it cannot prove that a request is authentic.

Allow PerplexityBot
User-agent: PerplexityBot
Allow: /
Block PerplexityBot
User-agent: PerplexityBot
Disallow: /

Read Perplexity's official crawler documentation ↗

Track it

Aiola tracks this crawler on your site — crawls, pages, trends. See when PerplexityBot arrives, which URLs it requests, and how activity changes over time.

Explore Aiola Analytics

FAQ

What is PerplexityBot?

PerplexityBot indexes pages for Perplexity search results and citations; Perplexity says it is not used for foundation-model training. Aiola classifies it as indexing because it supports a searchable retrieval index.

What user-agent token identifies PerplexityBot?

Match the case-insensitive token “PerplexityBot” in the User-Agent header. A matching header alone does not authenticate the sender.

Can I verify PerplexityBot by IP address?

Perplexity publishes a JSON feed, and this page snapshots 8 CIDR prefixes fetched on 2026-07-11. Match the source IP against the current vendor feed before trusting it.

Can robots.txt block PerplexityBot?

Perplexity documents crawler controls for this bot family. Robots.txt can direct cooperative crawling, but it cannot prove that a request is authentic. Use the specific “PerplexityBot” group when you want a rule for this identity without changing rules for every crawler.

Related