# CrawlSpur Meta-Robots Robots-File Checker

> CrawlSpur Meta-Robots Robots-File 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 the meta-robots directive value found in a website's robots.txt file object

## Facts

- Endpoint: POST https://crawlspur.halowerk.com/v1/pruef/crawlspur/meta-robots/robots-datei
- 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-meta-robots-robots-file-checker-895fd0a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lhxheRC8lY7Ua_mEGEWR4

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-meta-robots-robots-file-checker-895fd0a0 -d '<json body>'
```

Example prompt: Check the meta-robots value in the robots.txt file for https://example.com and tell me what crawl directives are declared there.

## When to prefer this

Use this endpoint when you specifically need to extract or validate the meta-robots directive value from a website's robots.txt file as a distinct object. Prefer this over general robots.txt parsers when you need a structured finding for the robots-file object specifically (as opposed to pagination, image, or URL-parameter contexts), and when integrating into a broader SEO audit pipeline via the CrawlSpur API family.

## Known failure modes

- Target URL is unreachable or returns non-200 status — endpoint may return an error or empty finding
- robots.txt file does not exist on the target domain — no meta-robots value can be found
- Malformed or invalid URL provided — validation error returned
- CSS selector matches no element or multiple elements — first match used or error returned
- Private/non-public IP provided — rejected due to public address requirement

## How this service works

Prüft am Objekt robots-datei den Befund Wert der Meta-Robots-Angabe.

## Output

Returns the finding of the meta-robots directive value as declared in the target site's robots.txt file, allowing the caller to understand what crawl or indexing instructions are present in the robots file object.

## 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-meta-robots-robots-file-checker-895fd0a0/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)
