# Crawlspur robots.txt URL Rule Checker

> Crawlspur robots.txt URL Rule Checker is a paid API for AI agents from crawlspur.halowerk.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-16).

Checks whether a given URL rule is permitted by the site's robots.txt file

## Facts

- Endpoint: POST https://crawlspur.halowerk.com/v1/pruef/crawlspur/robots-erlaubt/url-regel
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawlspur-robots-txt-url-rule-checker-eed37ce4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iKkNCXfRlcQb2uX-eQGpy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability crawlspur-robots-txt-url-rule-checker-eed37ce4 -d '<json body>'
```

Example prompt: Can you check whether the URL rule https://example.com/blog/post-123 is permitted by the site's robots.txt — I need to know if my crawler is allowed to access it?

## When to prefer this

Use this endpoint when you need to programmatically verify whether a specific URL or URL rule is permitted by a site's robots.txt before crawling, especially in SEO auditing, crawler pre-flight checks, or compliance workflows. Prefer this over manual robots.txt inspection when dealing with complex rule sets or large-scale URL auditing.

## Known failure modes

- URL is malformed or exceeds 2048 characters — validation error returned
- Target site is unreachable or returns non-200 status — crawl fails
- robots.txt file is missing or inaccessible — indeterminate result
- CSS selector matches no element or multiple elements — first match used or error
- user_agent string contains invalid characters — schema validation failure

## How this service works

Prüft am Objekt url-regel den Befund Freigabe durch robots.txt.

## Output

Returns a finding indicating whether the specified URL rule is permitted (allowed or disallowed) by the site's robots.txt, effectively confirming crawl access status for the given URL pattern.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ziel": {
   "oneOf": [
    {
     "type": "string",
     "maxLength": 2048,
     "minLength": 1,
     "description": "Öffentliche HTTP(S)-Adresse; bei DNS-Befunden Domain oder öffentliche IP."
    },
    {
     "type": "object",
     "required": [
      "adresse"
     ],
     "properties": {
      "adresse": {
       "type": "string",
       "maxLength": 2048,
       "minLength": 1
      },
      "selektor": {
       "type": "string",
       "maxLength": 240,
       "minLength": 1,
       "description": "CSS-Selektor: genau ein Objekt, sonst erster Treffer des Objektfilters."
      },
      "vergleich": {
       "type": "string",
       "maxLength": 2048,
       "description": "Öffentliche Vergleichsadresse für Link-, Sitemap- oder Sprachbefunde."
      },
      "user_agent": {
       "type": "string",
       "pattern": "^[A-Za-z0-9_-]{1,80}$"
      },
      "dkim_selektor": {
       "type": "string",
       "pattern": "^[A-Za-z0-9_-]{1,63}$"
      }
     },
     "additionalProperties": false
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crawlspur-robots-txt-url-rule-checker-eed37ce4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawlspur.halowerk.com](https://www.zero.xyz/host/crawlspur.halowerk.com/llms.txt)
