# AgentReader Web Page Metadata Extractor

> AgentReader Web Page Metadata Extractor is a paid API for AI agents from agent-reader.agent-reader.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches a web page and extracts structured metadata including title, description, Open Graph tags, Twitter card tags, canonical URL, favicons, JSON-LD types, language, and headings.

## Facts

- Endpoint: GET https://agent-reader.agent-reader.workers.dev/meta
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentreader-web-page-metadata-extractor-b46dd5ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iQXrSQiWioiaCstkuqY6Z

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 agentreader-web-page-metadata-extractor-b46dd5ed
```

Example prompt: Can you pull the metadata from https://www.bbc.com/news/technology — I want to see the page title, description, Open Graph tags, and any JSON-LD types on that page.

## When to prefer this

Use this endpoint when you need lightweight, fast metadata extraction from a web page without full content scraping — ideal for link previews, SEO audits, social tag inspection, and JSON-LD type detection. Prefer it over full-page scrapers when you only need header-level metadata rather than body text.

## Known failure modes

- URL is unreachable or returns a non-200 status — endpoint may return an error or empty metadata
- Page uses JavaScript rendering and metadata is injected client-side — static fetch may miss dynamically loaded tags
- URL parameter missing or malformed — returns 400 bad request
- Target page blocks bots/crawlers — may return empty or partial metadata
- Very large pages may time out on the Cloudflare Worker

## How this service works

Extract structured metadata from any web page: title, description, canonical URL, Open Graph and Twitter card tags, favicons, JSON-LD types, language and headings. Useful for link previews, content classification and SEO analysis.

## Output

A structured JSON object containing the page's title, meta description, canonical URL, Open Graph properties (og:title, og:description, og:image, etc.), Twitter card tags, favicon URLs, JSON-LD @type values found on the page, the declared language, and an array of heading elements (h1-h6).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Absolute http(s) URL of the page"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentreader-web-page-metadata-extractor-b46dd5ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-reader.agent-reader.workers.dev](https://www.zero.xyz/host/agent-reader.agent-reader.workers.dev/llms.txt)
