Feedspot
Feedspot RSS feed reader and blog aggregator
About this crawler
Feedspot is a web crawler identified by the regular-expression pattern Feedspot in the User-Agent request header. It is categorised as feed-reader. Use the regex above to detect, log, allow, or block Feedspot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.13%
Technical details
- Name
- Feedspot
- Pattern
Feedspot- Tags
- feed-reader
- Reference
- http://www.feedspot.com
- Added
- 2026/05/09
- Instances
- 1 known sample(s)
Sample User-Agent strings
Feedspot http://www.feedspot.com
Block this crawler
robots.txt — disallow Feedspot:
User-agent: Feedspot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Feedspot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Feedspot") {
return 403;
}
← back to all crawlers