# Pa1m SEO – Content Quality Check

> Pa1m SEO – Content Quality 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 content quality signals for SEO, returning a scored report with issues and recommendations for the content category.

## Facts

- Endpoint: GET https://seo.hypa1m.xyz/check/content
- 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-content-quality-check-4c46ad4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_476brZxCtIKaEZxibRoA_

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-content-quality-check-4c46ad4b
```

Example prompt: Can you run a content quality SEO check on https://example.com and tell me what content issues are hurting my rankings?

## When to prefer this

Use this endpoint when you need an instant, single-category content quality audit without waiting for a full async scan job. It's ideal when you only care about content signals (keyword usage, heading structure, thin content, duplicates) rather than technical health, Core Web Vitals, or other SEO categories. Prefer /check/content over /scan/quick when you want a fast, low-latency answer for just the content dimension at $0.05 per call.

## Known failure modes

- Invalid or unreachable URL returns an error or empty result
- Paywalled or login-protected pages may not be fully crawlable
- Very large pages may time out or return partial results
- Rate limiting if too many requests are made in quick succession
- Non-HTML resources (PDFs, images) may return incomplete or no content analysis

## 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

A JSON object containing a content category score (0–100) and a list of content-related SEO issues found on the target URL, including specifics about quality problems such as thin content, missing headings, duplicate text, or poor keyword usage.

## 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": "content"
 }
}
```

## More

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