# Pa1m SEO – Crawlability Check

> Pa1m SEO – Crawlability Check is a paid API for AI agents from seo.hypa1m.xyz, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Instantly audits a website's crawlability — checking robots.txt, sitemap accessibility, crawl directives, and indexability signals — and returns a scored result with issue details.

## Facts

- Endpoint: GET https://seo.hypa1m.xyz/check/crawlability
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pa1m-seo-crawlability-check-52fdb01a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bLSzRxb6he-Glpq74hRID

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 pa1m-seo-crawlability-check-52fdb01a
```

Example prompt: Can you check whether https://myshop.com is properly crawlable by search engines — I want to know if anything is blocking Google from indexing it?

## When to prefer this

Use this endpoint when you need a fast, single-category crawlability result without waiting for a full async scan job. Ideal for quickly checking whether a specific site can be indexed by search engines, debugging sudden organic traffic drops, or as a lightweight pre-launch sanity check. Prefer this over /scan/full or /scan/quick when you only need crawlability signals and want an instant synchronous response.

## Known failure modes

- Missing or invalid 'url' query parameter returns an error response
- Target site is unreachable or returns 5xx — audit may fail or return incomplete results
- Robots.txt not found on target domain — tool may flag as missing or assume open access
- Rate limiting or bot blocking on target site may prevent full crawl check
- Payment failure via x402 protocol blocks the request before execution

## How this service works

SEO audit any website — 200 rules across 20 categories: technical health, Core Web Vitals, content quality, AI-GEO signals, accessibility, security headers, structured data, and more. Async job flow: POST /scan/quick or /scan/full → poll GET /status/{job_id} → get JSON result with per-category scores (0–100) and issue lists. Use /brief for an AI action plan, /analyze for free-form SEO questions, or /check/{category} for instant single-category audits.

## Output

Returns a JSON object with a category key set to 'crawlability' and a result object containing a score (0–100) and a list of issues found — such as robots.txt blocks, missing or malformed sitemaps, noindex directives, crawl disallow rules, and other signals that affect how search engine bots can access and index the site.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Page or site URL to audit"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {},
  "category": "crawlability"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pa1m-seo-crawlability-check-52fdb01a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seo.hypa1m.xyz](https://www.zero.xyz/host/seo.hypa1m.xyz/llms.txt)
