# x402 AgentUtility SEO Snapshot

> x402 AgentUtility SEO Snapshot is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Audits a webpage's SEO in one call, returning head metadata, internal/external link breakdown, and ranked keyword suggestions seeded from the page title or a provided seed keyword.

## Facts

- Endpoint: POST https://x402.agentutility.ai/seo-snapshot
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agentutility-seo-snapshot-bc664e83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-82llh-5MDYNYFBthjDG_

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 x402-agentutility-seo-snapshot-bc664e83 -d '<json body>'
```

Example prompt: Can you run a full SEO snapshot on https://www.notion.so/product — I want the page title, meta description, canonical, OG tags, all internal and external links, and keyword suggestions seeded from 'productivity app'?

## When to prefer this

Choose this endpoint when you need on-page SEO metadata, link analysis, and keyword suggestions from a single URL in one call — replacing three separate API calls with one composite request. Ideal for agents running competitor audits, content gap analysis, or programmatic SEO pipelines at $0.04 per page. Prefer over calling individual metadata, link, and keyword APIs separately when latency and cost efficiency matter.

## Known failure modes

- Unreachable or non-public URL returns an error or degraded:true with partial results
- Bot-blocking pages may return empty metadata or missing links
- Pages with no outbound links yield internal_count and external_count of 0
- Keyword suggestions may be limited if the page title is too generic or short
- Component failures are indicated per-entry in the components array with ok:false

## How this service works

Audits a page's on-page SEO in one call: head metadata, link profile, and keyword ideas. Give it a URL and get back head metadata (title, description, canonical, OG/Twitter cards), the internal/external link breakdown, and ranked keyword suggestions seeded from your seed_keyword or the page's own title. One paid call replaces three: ideal for content-gap analysis, SEO audits, competitor page reviews, programmatic SEO pipelines. Composite: one call runs url-metadata-extract + link-extract in parallel, then keyword-suggest seeded from the page title. Use it as an SEO research API for agents.

## Output

A JSON object containing: the audited URL; head metadata (title, description, canonical, language, OG object, Twitter object); a links object with total count, external count, internal count, and an array of link items with href, anchor text, and is_external flag; a keywords object with count and ranked suggestion strings; a components array showing which sub-services ran (url-metadata-extract, link-extract, keyword-suggest) with per-component latency and success status; a degraded flag; and the seed_keyword_used.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Page URL to snapshot (http or https). Max 2048 chars."
      },
      "seed_keyword": {
       "type": "string",
       "description": "Optional keyword seed for suggestions. Defaults to the page title. Max 200 chars."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "links": {
       "type": "object",
       "properties": {
        "count": {
         "type": "integer"
        },
        "items": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "href": {
            "type": "string"
           },
           "text": {
            "type": "string"
           },
           "is_external": {
            "type": "boolean"
           }
          }
         }
        },
        "external_count": {
         "type": "integer"
        },
        "internal_count": {
         "type": "integer"
        }
       }
      },
      "degraded": {
       "type": "boolean"
      },
      "keywords": {
       "type": "object",
       "properties": {
        "count": {
         "type": "integer"
        },
        "suggestions": {
         "type": "array",
         "items": {
          "type": "string"
         }
        }
       }
      },
      "metadata": {
       "type": "object",
       "properties": {
        "og": {
         "type": "object",
         "properties": {}
        },
        "title": {
         "type": "string"
        },
        "twitter": {
         "type": "object",
         "properties": {}
        },
        "language": {
         "type": "string"
        },
        "canonical": {
         "t
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "links": {
   "count": 1,
   "items": [
    {
     "href": "https://www.iana.org/domains/example",
     "text": "More information...",
     "is_external": true
    }
   ],
   "external_count": 1,
   "internal_count": 0
  },
  "degraded": false,
  "keywords": {
   "count": 3,
   "suggestions": [
    "markdown editor",
    "markdown editor online",
    "markdown editor mac"
   ]
  },
  "metadata": {
   "og": {},
   "title": "Example Domain",
   "twitter": {},
   "language": "en",
   "canonical": null,
   "description": ""
  },
  "components": [
   {
    "ms": 620,
    "ok": true,
    "name": "url-metadata-extract"
   },
   {
    "ms": 710,
    "ok": true,
    "name": "link-extract"
   },
   {
    "ms": 480,
    "ok": true,
    "name": "keyword-suggest"
   }
  ],
  "composed_of": [
   "url-metadata-extract",
   "keyword-suggest",
   "link-extract"
  ],
  "seed_keyword_used": "markdown editor"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-agentutility-seo-snapshot-bc664e83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
