Skip to content
Eden Engine

Robots.txt Crawler Rules Parser

omnial/x402-robots-txt-parse

Given a website's URL, fetches and parses its robots.txt file and returns the crawl rules for every user-agent it names (allowed and disallowed paths, crawl delay), a total rule count, and whether the file blocks all crawlers outright -- useful for checking what a search engine or AI crawler is and is not permitted to access on a site.

activeper callv1
Provider
Web & Business Data Network
Category
domain-intelligence
Provider price
$0.0324324 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "description": "The website URL to fetch robots.txt for, e.g. 'https://example.com'."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "rules": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "user_agent",
          "allow",
          "disallow"
        ],
        "properties": {
          "allow": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Path patterns this user-agent is explicitly allowed. Often empty."
          },
          "disallow": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Path patterns this user-agent is disallowed. Often empty."
          },
          "user_agent": {
            "type": "string"
          },
          "crawl_delay": {
            "type": "number",
            "description": "Seconds between requests this user-agent is asked to wait. Only present on rules that declare one -- observed on 'SemrushBot' (5), 'PerplexityBot' (1), and 'baidu' (1); absent (not null) on every other rule observed."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per named user-agent, in file order."
    },
    "exists": {
      "type": "boolean",
      "description": "Whether the site served a robots.txt file at all. Observed true on both real fixtures."
    },
    "raw_length": {
      "type": "number",
      "description": "Byte length of the raw robots.txt file that was fetched and parsed."
    },
    "total_rules": {
      "type": "number",
      "description": "Total number of per-user-agent rule blocks parsed (34 and 13 observed)."
    },
    "user_agents": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Every user-agent named in the file, in file order, including the wildcard '*' entry when present."
    },
    "total_allow_rules": {
      "type": "number",
      "description": "Total count of allow-path entries across all rules."
    },
    "blocks_all_crawlers": {
      "type": "boolean",
      "description": "True when the file's rules disallow every crawler outright. Observed false on both real fixtures captured; a genuinely blocking robots.txt was not observed."
    },
    "total_disallow_rules": {
      "type": "number",
      "description": "Total count of disallow-path entries across all rules."
    }
  },
  "description": "The parsed robots.txt result, as returned at routing.responseResultPath ($.output). Both real fixtures captured have `exists: true`; the shape when a site has no robots.txt file is unconfirmed (see verification.notes).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0324324
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026