# URL Metadata Extractor (Title, Description, OpenGraph, Favicon, Canonical)

> URL Metadata Extractor (Title, Description, OpenGraph, Favicon, Canonical) is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Extracts title, description, OpenGraph image, favicon, and canonical URL from any given web URL for link previews and summaries.

## Facts

- Endpoint: GET https://agents.dyoeway.org/metadata
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/url-metadata-extractor-title-description-opengraph-favicon-canonical-e61474fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LbPp4YwQengHEISMxry3U

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 url-metadata-extractor-title-description-opengraph-favicon-canonical-e61474fa
```

Example prompt: Can you grab the title, description, OpenGraph image, and favicon from this URL — https://openai.com — so I can build a link preview card for it?

## When to prefer this

Choose this endpoint when you need to quickly generate a link preview or extract standard web metadata (title, description, og:image, favicon, canonical) from any arbitrary URL without building your own scraper. Ideal for AI agents building content cards, summarizing links shared in chat, or enriching URLs with human-readable context at low cost ($0.01 per call).

## Known failure modes

- URL is unreachable or returns non-200 status — metadata fields may be empty or partially populated
- URL points to a non-HTML resource (PDF, image, etc.) — limited or no metadata extractable
- Page blocks crawlers via robots.txt or JavaScript rendering required — fields may be missing
- Malformed or invalid URL provided — likely returns an error response
- OpenGraph tags not present on the target page — og:image and og:description may be null

## How this service works

Extract title, description, OpenGraph image, favicon & canonical from any URL — link previews & summaries. Input: ?url=

## Output

Returns structured metadata extracted from the given URL including: page title, meta description, OpenGraph image URL, favicon URL, and canonical URL. Useful for rendering link preview cards or summarizing a page without loading it fully.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Page to read title/description/OG image from"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/url-metadata-extractor-title-description-opengraph-favicon-canonical-e61474fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
