# AgentReader Meta Tag Extractor

> AgentReader Meta Tag Extractor is a paid API for AI agents from agentreader.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Extracts structured metadata from any web page including title, description, canonical URL, Open Graph/Twitter card tags, favicons, JSON-LD types, language, and headings.

## Facts

- Endpoint: GET https://agentreader.dev/meta
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentreader-meta-tag-extractor-90603ddf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OiO2Z1VLZ_IhwNT9zut0z

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-meta-tag-extractor-90603ddf
```

Example prompt: Can you pull all the metadata from https://example.com/blog/my-post — I want the title, description, Open Graph tags, canonical URL, and any JSON-LD types so I can build a link preview card.

## When to prefer this

Choose this endpoint when you need lightweight, fast metadata extraction from a URL without needing the full page body — ideal for link previews, SEO audits, content classification, and Open Graph / Twitter card inspection. Prefer this over a full-page scraper or article extractor when you only need head-level metadata, structured data types, and headings rather than the main article content.

## Known failure modes

- URL is not reachable or returns a non-200 status — endpoint may return an error or empty fields
- Page blocks crawlers via robots.txt or bot detection — metadata may be partial or missing
- JavaScript-rendered pages where meta tags are injected client-side may not be captured
- Malformed or relative URLs passed as input will fail the required absolute URL validation
- Pages with no meta tags return mostly empty fields but do not error

## How this service works

Get structured metadata for any public web page in one call: title, meta description, canonical URL, Open Graph and Twitter card tags, favicons, JSON-LD schema types, language and the heading outline. Use it to build link previews and social cards, classify or dedupe URLs, and run SEO and AI-readability audits - far cheaper than fetching and parsing the whole page.

## Output

Returns a structured JSON object containing the page title, meta description, canonical URL, Open Graph tags (og:title, og:description, og:image, og:type, etc.), Twitter card tags, favicon URLs, JSON-LD schema types found on the page, detected language, and an array of headings (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-meta-tag-extractor-90603ddf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentreader.dev](https://www.zero.xyz/host/agentreader.dev/llms.txt)
