# Website Metadata Extractor

> Website Metadata Extractor is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches homepage metadata including title, meta description, OpenGraph tags, language, favicon, viewport, HTTP status, and final URL for a given website.

## Facts

- Endpoint: GET https://intel.rallylive.ca/page-meta
- 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/website-metadata-extractor-3796b9d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ocyK2JstbD_HKL4Is8ite

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 website-metadata-extractor-3796b9d9
```

Example prompt: Pull the homepage metadata for stripe.com — I need the page title, meta description, OpenGraph image, language, and whether it has a favicon.

## When to prefer this

Choose this endpoint when you need a quick, structured snapshot of a website's public-facing identity metadata (title, description, OG tags, language, favicon) without needing to parse raw HTML yourself. It is ideal for link preview generation, directory enrichment, and lightweight SEO audits where you only need homepage-level data. Prefer it over full crawlers when speed and cost matter and you only need surface-level metadata.

## Known failure modes

- Site is unreachable or times out — returns non-200 HTTP status and empty metadata fields
- Domain does not exist or has a DNS error — returns error status with no metadata
- Site blocks automated requests (bot protection) — may return partial or empty metadata
- Redirects to a non-HTML resource — OpenGraph and meta fields may be absent
- Page has no OpenGraph tags — og:* fields will be null or missing in response

## How this service works

Website homepage metadata extraction: title, meta description, OpenGraph title/description/image/site name, language, favicon and viewport presence, HTTP status and final URL. Quick site profiling for directories, link previews, SEO audits and lead enrichment. $0.01 per site.

## Output

Returns a structured object containing the page title, meta description, OpenGraph title/description/image/site name, detected language, favicon presence (boolean), viewport presence (boolean), HTTP status code, and the final resolved URL after any redirects.

## 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",
     "properties": {}
    }
   },
   "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/website-metadata-extractor-3796b9d9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
