# Pa1m SEO – Security Headers Check

> Pa1m SEO – Security Headers 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 HTTP security headers and returns a per-category score and issue list for the security category.

## Facts

- Endpoint: GET https://seo.hypa1m.xyz/check/security
- 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-security-headers-check-460b77b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jdktFhSPGPGVPGBzkMaXZ

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-security-headers-check-460b77b2
```

Example prompt: Can you instantly check the security headers on my website https://example.com and tell me what's missing or broken, with a score out of 100?

## When to prefer this

Use this endpoint when you need an instant, single-category security header audit without waiting for a full async scan job. It is ideal for quick checks during development, CI/CD pipelines, or generating a focused security section of an SEO report. Prefer the full /scan/full flow if you need scores across all 20 categories simultaneously.

## Known failure modes

- Missing or invalid 'url' query parameter returns an error or empty result
- Target URL is unreachable or returns a non-200 status, leading to incomplete audit
- Malformed URL input causes a parsing error
- Rate limiting or payment failure (402) if the x402 payment header is missing or insufficient
- Some headers may not be detectable if the target uses aggressive caching or CDN edge responses

## 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' field set to 'security' (or similar) and a 'result' object containing a numeric score (0–100) and a list of security header issues found on the target URL, such as missing HSTS, CSP, X-Frame-Options, X-Content-Type-Options, or Referrer-Policy headers.

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

## More

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