# Pa1m SEO Bulk URL Check

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

Submits a batch of URLs for async SEO auditing across 200 rules and 20 categories, returning a job ID to poll for results

## Facts

- Endpoint: POST https://seo.hypa1m.xyz/google/check/bulk
- Price: $12/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-bulk-url-check-fecab414
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2i01cTW-UT_HDCO5VNioI

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-bulk-url-check-fecab414 -d '<json body>'
```

Example prompt: Can you run a bulk SEO audit on these URLs — https://example.com/page1, https://example.com/page2, and https://example.com/page3 — and tell me their scores across technical health, content quality, and Core Web Vitals once it's done?

## When to prefer this

Choose this bulk endpoint when you need to audit multiple URLs in a single request rather than scanning them one by one, making it significantly more cost-efficient and faster for site-wide or multi-page SEO analysis. It is ideal for pre-launch checks, migration audits, or competitive benchmarking where many pages need simultaneous evaluation. If you only need to audit a single URL or want an instant result for one category, consider the /scan/quick or /check/{category} sibling endpoints instead.

## Known failure modes

- Invalid or unreachable URLs result in per-URL errors in the result payload
- Payment failure blocks job submission
- Rate limits or quota exceeded may return 429 or payment-required errors
- Polling the status endpoint before job completion returns an in-progress status rather than results
- Malformed request body (missing URL list) results in 400 validation error
- Very large batches may time out or require extended polling

## 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 containing a task_id for polling, a poll URL path (/google/check/status/{task_id}), the amount paid in USD, and the number of URLs submitted. The agent must subsequently poll the status endpoint with the task_id to retrieve the full per-category scores (0–100) and issue lists once the async job completes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "urls": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 1000,
   "description": "Up to 1000 URLs to check against Google's index"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "poll": "/google/check/status/{task_id}",
  "task_id": "69d90e28ca1ca09ba6bab220",
  "paid_usd": 12,
  "submitted": 1000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pa1m-seo-bulk-url-check-fecab414/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)
