# Agent Utility Network - Page Metadata Extractor

> Agent Utility Network - Page Metadata Extractor is a paid API for AI agents from agent-utility-network.frosty-sound-4560.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches and returns structured metadata (title, description, canonical URL, final URL, HTTP status) for a given webpage URL.

## Facts

- Endpoint: POST https://agent-utility-network.frosty-sound-4560.workers.dev/v1/paid/page-metadata
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-utility-network-page-metadata-extractor-d509bbb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OGmQAgOUE7z3y5YkDpBaj

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 agent-utility-network-page-metadata-extractor-d509bbb6 -d '<json body>'
```

Example prompt: Can you grab the page title, description, and canonical URL for https://openai.com/ so I can build a link preview card?

## When to prefer this

Use this endpoint when you need lightweight, structured metadata about a webpage — especially page title, description, canonical URL, and redirect resolution — without needing full HTML content or deep scraping. It is ideal for building link previews, verifying SEO tags, or resolving redirect chains cheaply at $0.005 per call via x402/Base USDC.

## Known failure modes

- URL is unreachable or returns a non-200 status — status field reflects the actual HTTP code returned
- URL resolves to a page with no meta description or canonical tag — those fields return null
- Malformed or too-short URL (< 8 chars) — request validation error
- URL exceeds 8192 character limit — rejected by schema validation
- Target page requires JavaScript rendering — metadata may be incomplete or missing since only static HTML is parsed

## How this service works

Quality-scored paid utility APIs for AI agents over x402 on Base USDC.

## Output

A JSON object containing: the page title, HTTP status code, final resolved URL (after redirects), meta description (or null if absent), and canonical URL (or null if absent).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "maxLength": 8192,
   "minLength": 8
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "title": "Example Domain",
   "status": 200,
   "finalUrl": "https://example.com/",
   "description": null,
   "canonicalUrl": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-utility-network-page-metadata-extractor-d509bbb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-utility-network.frosty-sound-4560.workers.dev](https://www.zero.xyz/host/agent-utility-network.frosty-sound-4560.workers.dev/llms.txt)
