Meta Robots Checker - Is This Page Indexable? API avatar

Meta Robots Checker - Is This Page Indexable? API

Pricing

$20.00 / 1,000 page scanneds

Go to Apify Store
Meta Robots Checker - Is This Page Indexable? API

Meta Robots Checker - Is This Page Indexable? API

Check if a page is indexable by search engines. Input: a URL. Output: JSON with meta robots content, X-Robots-Tag header, canonical URL and self-reference check, noindex/nofollow flags, and a combined indexable verdict. Cheap pay-per-result: $0.02 per page scanned.

Pricing

$20.00 / 1,000 page scanneds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Meta Robots & Indexability Auditor

Find out instantly whether a page can actually rank — or is quietly blocked from Google's index.

Live on the Apify Store — run it instantly or call it as an agent tool via Apify MCP.

This actor fetches a page, reads every signal search engines use to decide indexability — the meta name="robots" tag, the per-bot meta name="googlebot" tag, the X-Robots-Tag HTTP header, and the rel="canonical" link — then combines them into one clear indexable verdict with plain-English reasons.

What you get

  • indexable verdict — a single boolean: will this page be indexed, or is it blocked?
  • All robots sourcesmetaRobots, metaGooglebot, and the xRobotsTag header, exactly as served.
  • Parsed directivesnoindex, nofollow, noarchive, nosnippet, noimageindex, plus the full normalized list.
  • Canonical check — the declared canonical URL and whether it self-references (or points elsewhere = duplicate risk).
  • Reasons — human-readable explanations behind the verdict, so you know exactly what to fix.
  • Bulk — audit up to 50 URLs in a single run.

Input

{
"url": "https://github.com",
"urls": ["https://www.cloudflare.com", "example.com/blog"],
"maxUrls": 25
}

Provide a single url, a list of urls, or both. Domains without a scheme default to https://.

Output

{
"url": "https://github.com",
"finalUrl": "https://github.com/",
"status": 200,
"indexable": true,
"metaRobots": null,
"metaGooglebot": null,
"xRobotsTag": null,
"directives": {
"noindex": false,
"nofollow": false,
"noarchive": false,
"nosnippet": false,
"noimageindex": false,
"none": false,
"all": []
},
"canonical": "https://github.com/",
"selfCanonical": true,
"reasons": [
"No robots restrictions found — defaults to indexable & followable.",
"canonical is self-referential."
]
}