{"id":80,"date":"2024-06-04T17:15:27","date_gmt":"2024-06-04T17:15:27","guid":{"rendered":"https:\/\/autorank.so\/blog\/ahrefs-bot\/"},"modified":"2026-05-06T23:15:58","modified_gmt":"2026-05-06T23:15:58","slug":"ahrefs-bot","status":"publish","type":"post","link":"https:\/\/autorank.so\/blog\/ahrefs-bot\/","title":{"rendered":"How to Block AhrefsBot (robots.txt, .htaccess, Cloudflare + Nginx)"},"content":{"rendered":"<p><strong>Quick answer:<\/strong> Add these two lines to your <code>robots.txt<\/code> and AhrefsBot will stop crawling your site within a day or two:<\/p>\n<pre><code>User-agent: AhrefsBot\nDisallow: \/<\/code><\/pre>\n<p>That&#8217;s the simplest method and the one most people want. If you need a hard block (server returns 403 instead of relying on bot compliance), use <strong>.htaccess<\/strong>, <strong>Nginx<\/strong>, or a <strong>Cloudflare WAF rule<\/strong> \u2014 all the code is below. <strong>Blocking AhrefsBot does not affect your Google rankings<\/strong> \u2014 Ahrefs is a third-party SEO tool, completely separate from Googlebot.<\/p>\n<p><!-- autorank:tool-link:robots-txt-generator --><\/p>\n<aside class=\"autorank-tool-callout\" style=\"border:1px solid #e2e8f0;background:#f8fafc;border-left:4px solid #f59e0b;border-radius:8px;padding:16px 20px;margin:24px 0\">\n<strong>\ud83d\udee0 Free tool:<\/strong> <a href=\"https:\/\/autorank.so\/free-tools\/robots-txt-generator\"><strong>Robots.txt Generator<\/strong><\/a> \u2014 Build a clean robots.txt with proper Disallow + Allow rules and sitemap reference \u2014 paste straight into the root of your domain.<br \/>\n<\/aside>\n<p><!-- \/autorank:tool-link:robots-txt-generator --><\/p>\n<h2>Pick a blocking method (comparison)<\/h2>\n<table style=\"width:100%;border-collapse:collapse;margin:1.5rem 0\">\n<thead>\n<tr style=\"background:#f1f5f9\">\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">Method<\/th>\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">Strength<\/th>\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">Effort<\/th>\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">Best for<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><strong>robots.txt<\/strong><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Soft (relies on bot compliance \u2014 Ahrefs respects it)<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">2 min<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Anyone with FTP\/cPanel access<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><strong>.htaccess<\/strong><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Hard (server returns 403)<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">5 min<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Apache servers, shared hosting<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><strong>Nginx config<\/strong><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Hard (server returns 403)<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">5 min<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">VPS \/ dedicated servers<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><strong>Cloudflare WAF<\/strong><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Hard (blocked at edge before request hits origin)<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">3 min<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Sites already on Cloudflare<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><strong>IP-range firewall<\/strong><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Hardest (drops packets at OS level)<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">10 min<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">When user-agent spoofing is a concern<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The right pick depends on whether you want a polite signal (&#8220;please don&#8217;t crawl&#8221;) or an enforced block (&#8220;server refuses every request from this bot&#8221;). For 95% of cases, <code>robots.txt<\/code> is enough \u2014 Ahrefs is a well-behaved crawler and respects it within a day or two.<\/p>\n<h2>Method 1: Block AhrefsBot via robots.txt (recommended)<\/h2>\n<p>The most common method. Add these lines to your <code>robots.txt<\/code> file at the root of your domain:<\/p>\n<pre><code>User-agent: AhrefsBot\nDisallow: \/<\/code><\/pre>\n<p>If you only want to block AhrefsBot from specific directories (and let it crawl the rest):<\/p>\n<pre><code>User-agent: AhrefsBot\nDisallow: \/admin\/\nDisallow: \/private\/\nAllow: \/<\/code><\/pre>\n<p>AhrefsBot reads <code>robots.txt<\/code> on every visit, so the rule takes effect within hours. If you don&#8217;t have a <code>robots.txt<\/code> file yet, use a <a href=\"https:\/\/autorank.so\/free-tools\/robots-txt-generator\">free robots.txt generator<\/a> to create one quickly.<\/p>\n<h2>Method 2: Block AhrefsBot via .htaccess (Apache)<\/h2>\n<p>If you want a hard block \u2014 the server returns <code>403 Forbidden<\/code> instead of relying on the bot to honor robots.txt \u2014 add this to your <code>.htaccess<\/code> file:<\/p>\n<pre><code>RewriteEngine On\nRewriteCond %{HTTP_USER_AGENT} AhrefsBot [NC]\nRewriteRule .* - [F,L]<\/code><\/pre>\n<p>The <code>[NC]<\/code> flag is case-insensitive matching. <code>[F,L]<\/code> means &#8220;Forbidden, Last rule&#8221; \u2014 return 403 and stop processing further rules. To block multiple SEO bots at once:<\/p>\n<pre><code>RewriteEngine On\nRewriteCond %{HTTP_USER_AGENT} (AhrefsBot|SemrushBot|MJ12bot|DotBot) [NC]\nRewriteRule .* - [F,L]<\/code><\/pre>\n<h2>Method 3: Block AhrefsBot via Nginx<\/h2>\n<p>For Nginx servers, add this inside your <code>server { }<\/code> block:<\/p>\n<pre><code>if ($http_user_agent ~* \"AhrefsBot\") {\n    return 403;\n}<\/code><\/pre>\n<p>To block multiple SEO bots:<\/p>\n<pre><code>if ($http_user_agent ~* \"(AhrefsBot|SemrushBot|MJ12bot|DotBot)\") {\n    return 403;\n}<\/code><\/pre>\n<p>Reload Nginx to apply: <code>sudo nginx -s reload<\/code>.<\/p>\n<h2>Method 4: Block AhrefsBot via Cloudflare WAF<\/h2>\n<p>If your site is already on Cloudflare, blocking at the edge is the cleanest option \u2014 the request never hits your origin server, saving bandwidth and CPU.<\/p>\n<ol>\n<li>Cloudflare dashboard \u2192 <strong>Security<\/strong> \u2192 <strong>WAF<\/strong> \u2192 <strong>Custom rules<\/strong><\/li>\n<li>Click <strong>Create rule<\/strong><\/li>\n<li>Field: <code>User Agent<\/code> &nbsp; Operator: <code>contains<\/code> &nbsp; Value: <code>AhrefsBot<\/code><\/li>\n<li>Action: <strong>Block<\/strong><\/li>\n<li>Save and deploy<\/li>\n<\/ol>\n<p>Cloudflare also has a built-in &#8220;Bot Fight Mode&#8221; toggle (under Security \u2192 Bots) that blocks many SEO crawlers automatically \u2014 quicker than custom rules if you want to nuke them all at once.<\/p>\n<h2>Method 5: Block by IP range (when user-agent is being spoofed)<\/h2>\n<p>Sometimes attackers send fake AhrefsBot user-agent headers to disguise scraping. If you&#8217;ve already verified that a user-agent is fake (see &#8220;How to verify real AhrefsBot traffic&#8221; below) and you want to block at the network level, use the published IP ranges:<\/p>\n<pre><code># iptables \u2014 block AhrefsBot IP ranges entirely\niptables -A INPUT -s 54.36.148.0\/24 -j DROP\niptables -A INPUT -s 54.36.149.0\/24 -j DROP\niptables -A INPUT -s 54.36.150.0\/24 -j DROP\niptables -A INPUT -s 195.154.122.0\/24 -j DROP\niptables -A INPUT -s 195.154.123.0\/24 -j DROP\niptables -A INPUT -s 195.154.126.0\/24 -j DROP\niptables -A INPUT -s 195.154.127.0\/24 -j DROP<\/code><\/pre>\n<p>This drops packets at the OS level \u2014 even spoofed traffic from these IPs gets refused. Note that Ahrefs adds new IP ranges over time; this list is current as of 2026 but check their <a href=\"https:\/\/ahrefs.com\/robot\/\" rel=\"nofollow noopener\" target=\"_blank\">official documentation<\/a> for the latest.<\/p>\n<h2>Will blocking AhrefsBot hurt my SEO?<\/h2>\n<p><strong>No.<\/strong> AhrefsBot has nothing to do with how Google ranks your site. Google uses Googlebot \u2014 a separate crawler, with separate IPs, controlled by Google. Blocking AhrefsBot does not affect:<\/p>\n<ul>\n<li>Your Google rankings<\/li>\n<li>Your indexed pages in Google Search<\/li>\n<li>Your traffic from Google Search<\/li>\n<li>Bingbot, DuckDuckBot, or any other major search engine crawler<\/li>\n<\/ul>\n<p>The only things blocking AhrefsBot affects:<\/p>\n<ul>\n<li><strong>Ahrefs&#8217; data on your site:<\/strong> If you use Ahrefs to monitor your own backlinks\/keywords, the data goes stale. (Workaround: verify your site in Ahrefs Webmaster Tools \u2014 that uses a different crawler that you can allow while blocking AhrefsBot.)<\/li>\n<li><strong>Yep.com visibility:<\/strong> Yep is Ahrefs&#8217; search engine. Blocking AhrefsBot removes you from Yep \u2014 though Yep traffic is currently negligible for most sites.<\/li>\n<li><strong>Competitor research from Ahrefs users:<\/strong> They won&#8217;t see your data in Ahrefs reports \u2014 could be a feature if you&#8217;d rather competitors not see your backlink profile.<\/li>\n<\/ul>\n<h2>Why people block AhrefsBot<\/h2>\n<ul>\n<li><strong>Hide backlink profile from competitors<\/strong> \u2014 by far the most common reason. Ahrefs is the standard tool for competitive backlink research, and blocking the bot blinds anyone trying to scrape your link strategy.<\/li>\n<li><strong>Reduce server load<\/strong> \u2014 on small VPS or shared hosting, every crawler adds CPU\/bandwidth. AhrefsBot is well-behaved but still costs something.<\/li>\n<li><strong>Protect proprietary content<\/strong> \u2014 if you don&#8217;t want your content samples appearing in Ahrefs&#8217; Top Pages or Content Explorer reports.<\/li>\n<li><strong>You simply don&#8217;t use Ahrefs<\/strong> \u2014 no reason to let it crawl you if you get no value from it.<\/li>\n<\/ul>\n<h2>Slow AhrefsBot down instead of blocking<\/h2>\n<p>If you don&#8217;t want to block AhrefsBot entirely but it&#8217;s hitting your server too aggressively, add a <code>Crawl-delay<\/code> directive:<\/p>\n<pre><code>User-agent: AhrefsBot\nCrawl-delay: 10<\/code><\/pre>\n<p>That tells AhrefsBot to wait 10 seconds between requests. Increase the number for less frequent crawling. AhrefsBot honors <code>Crawl-delay<\/code> (Googlebot doesn&#8217;t, but that&#8217;s a different bot).<\/p>\n<p>You can also adjust crawl rate through <a href=\"https:\/\/ahrefs.com\/webmaster\" rel=\"nofollow noopener\" target=\"_blank\">Ahrefs Webmaster Tools<\/a> if you&#8217;ve verified ownership of your site there.<\/p>\n<h2>How to verify real AhrefsBot traffic (vs. spoofed)<\/h2>\n<p>Anyone can set the <code>User-Agent<\/code> header to &#8220;AhrefsBot&#8221; \u2014 scrapers do it routinely to disguise themselves. To verify a request is genuinely from Ahrefs, do a reverse DNS check:<\/p>\n<pre><code># Step 1: Reverse DNS lookup on the source IP\nhost 54.36.148.1\n# Should return something like:\n# 1.148.36.54.in-addr.arpa domain name pointer crawl-54-36-148-1.ahrefs.com\n\n# Step 2: Forward DNS lookup on the returned hostname\nhost crawl-54-36-148-1.ahrefs.com\n# Should resolve back to: 54.36.148.1<\/code><\/pre>\n<p>If the hostname doesn&#8217;t end in <code>.ahrefs.com<\/code> or <code>.ahrefs.net<\/code>, or if the forward and reverse don&#8217;t match, the traffic is spoofed. Block by IP at the firewall (Method 5 above).<\/p>\n<h2>AhrefsBot user-agent string<\/h2>\n<p>The exact user-agent AhrefsBot identifies itself with:<\/p>\n<pre><code>Mozilla\/5.0 (compatible; AhrefsBot\/7.0; +http:\/\/ahrefs.com\/robot\/)<\/code><\/pre>\n<p>The version number changes over time; the consistent identifier is <code>AhrefsBot<\/code> \u2014 that&#8217;s what you match in robots.txt rules and server configs. Note there&#8217;s a separate bot called <code>AhrefsSiteAudit<\/code> that runs when Ahrefs users audit their own sites; if you&#8217;re verified in Ahrefs Webmaster Tools, you can allow AhrefsSiteAudit while blocking AhrefsBot.<\/p>\n<h2>AhrefsBot IP address ranges<\/h2>\n<p>Ahrefs publishes the IP ranges AhrefsBot crawls from. Use these to verify traffic or block at the network level:<\/p>\n<pre><code>54.36.148.0\/24\n54.36.149.0\/24\n54.36.150.0\/24\n195.154.122.0\/24\n195.154.123.0\/24\n195.154.126.0\/24\n195.154.127.0\/24<\/code><\/pre>\n<p>This list isn&#8217;t exhaustive \u2014 Ahrefs adds ranges as they scale infrastructure. Their <a href=\"https:\/\/ahrefs.com\/robot\/\" rel=\"nofollow noopener\" target=\"_blank\">official IP documentation<\/a> has the current canonical list. For real-time IP verification, you can use our <a href=\"https:\/\/autorank.so\/free-tools\/ahrefs-bot-ip-finder\">AhrefsBot IP Address Checker<\/a>.<\/p>\n<h2>AhrefsBot vs. other SEO crawlers<\/h2>\n<table style=\"width:100%;border-collapse:collapse;margin:1.5rem 0\">\n<thead>\n<tr style=\"background:#f1f5f9\">\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">Bot<\/th>\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">User-agent<\/th>\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">Owned by<\/th>\n<th style=\"padding:8px 12px;text-align:left;border:1px solid #e2e8f0\">Behavior<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">AhrefsBot<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><code>AhrefsBot<\/code><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Ahrefs<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Polite, honors robots.txt + crawl-delay<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">SemrushBot<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><code>SemrushBot<\/code><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Semrush<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Polite, honors robots.txt<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">MJ12bot<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><code>MJ12bot<\/code><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Majestic<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Polite, can be aggressive on large sites<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">DotBot<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><code>DotBot<\/code><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Moz<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Polite, honors robots.txt<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">SeznamBot<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\"><code>SeznamBot<\/code><\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Seznam (CZ search)<\/td>\n<td style=\"padding:8px 12px;border:1px solid #e2e8f0\">Polite, geographic relevance only<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>If you decide to block AhrefsBot, consider whether to also block its peers. The combined block rule for all major SEO crawlers (in robots.txt):<\/p>\n<pre><code>User-agent: AhrefsBot\nDisallow: \/\n\nUser-agent: SemrushBot\nDisallow: \/\n\nUser-agent: MJ12bot\nDisallow: \/\n\nUser-agent: DotBot\nDisallow: \/<\/code><\/pre>\n<h2>Frequently asked questions<\/h2>\n<h3>How long does it take for AhrefsBot to stop crawling after I block it?<\/h3>\n<p>AhrefsBot reads <code>robots.txt<\/code> on every visit, so the rule takes effect within hours. If you used .htaccess, Nginx, or Cloudflare WAF, the block is instant \u2014 the server starts returning 403 immediately.<\/p>\n<h3>Will blocking AhrefsBot hurt my Google rankings?<\/h3>\n<p>No. AhrefsBot is a third-party SEO tool&#8217;s crawler, completely separate from Googlebot. Blocking AhrefsBot has zero effect on your visibility in Google Search.<\/p>\n<h3>Can I block AhrefsBot but still see my own data in Ahrefs?<\/h3>\n<p>Yes \u2014 verify your site in Ahrefs Webmaster Tools. Verified sites are crawled by <code>AhrefsSiteAudit<\/code> (a separate bot), which you can allow while blocking the public AhrefsBot:<\/p>\n<pre><code>User-agent: AhrefsBot\nDisallow: \/\n\nUser-agent: AhrefsSiteAudit\nAllow: \/<\/code><\/pre>\n<h3>Why is AhrefsBot crawling my site so frequently?<\/h3>\n<p>Ahrefs prioritizes crawl frequency by domain authority \u2014 high-DR sites get visited more often. If you don&#8217;t want the load, add a <code>Crawl-delay: 10<\/code> (or higher) directive in robots.txt to throttle, or block entirely.<\/p>\n<h3>Does Cloudflare&#8217;s &#8220;Bot Fight Mode&#8221; block AhrefsBot?<\/h3>\n<p>Yes \u2014 the &#8220;Likely Automated&#8221; rules in Cloudflare&#8217;s bot management catch AhrefsBot along with most other SEO crawlers. If you turn it on, you don&#8217;t need separate WAF rules. Just be aware it also blocks legitimate tools like uptime monitors, so check your monitoring still works after enabling.<\/p>\n<h3>What if I see AhrefsBot user-agent traffic from non-Ahrefs IPs?<\/h3>\n<p>That&#8217;s spoofed traffic \u2014 someone is scraping your site and disguising the bot. Verify with reverse DNS (instructions above), and if it&#8217;s spoofed, block at the IP level rather than user-agent.<\/p>\n<h3>Is there a list of all bots I should block?<\/h3>\n<p>Depends on your goals. For competitor backlink secrecy: AhrefsBot, SemrushBot, MJ12bot, DotBot. For server load: also block AI scrapers (GPTBot, CCBot, Google-Extended). For pure spam: block any bot you don&#8217;t recognize that&#8217;s hitting your site frequently.<\/p>\n<h2>Bottom line<\/h2>\n<p>For most sites, the right answer is <strong>add the two-line robots.txt rule<\/strong> and move on. AhrefsBot respects it, the block takes effect within a day, and you don&#8217;t sacrifice anything Google-related. If you want a guaranteed hard block, use the .htaccess or Nginx config above. If you&#8217;re on Cloudflare, the WAF rule is the cleanest option of all.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Five ways to block AhrefsBot \u2014 copy-paste robots.txt, .htaccess, Nginx, Cloudflare WAF, and IP-range firewall code. Plus: blocking AhrefsBot does NOT hurt your Google rankings.<\/p>\n","protected":false},"author":1,"featured_media":81,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"How to Block AhrefsBot (5 Methods, with Code)","rank_math_description":"Five copy-paste methods to block AhrefsBot \u2014 robots.txt, .htaccess, Nginx, Cloudflare WAF, IP firewall. Plus the answer to: does blocking AhrefsBot hurt SEO? (No.)","rank_math_focus_keyword":"how to block ahrefs bot","footnotes":""},"categories":[1],"tags":[56,63,49,61],"class_list":["post-80","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-ahrefs","tag-robots-txt","tag-seo-tools","tag-web-crawlers"],"_links":{"self":[{"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/posts\/80","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/comments?post=80"}],"version-history":[{"count":4,"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/posts\/80\/revisions"}],"predecessor-version":[{"id":776,"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/posts\/80\/revisions\/776"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/media\/81"}],"wp:attachment":[{"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/media?parent=80"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/categories?post=80"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/autorank.so\/blog\/wp-json\/wp\/v2\/tags?post=80"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}