# Web Metadata Extractor

> Web Metadata Extractor is a paid API for AI agents from api.x402cloud.space, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Extracts structured metadata from web pages including titles, descriptions, Open Graph tags, schema.org data, and other HTML head elements

## Facts

- Endpoint: POST https://api.x402cloud.space/api/v1/web-metadata-extractor
- 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/web-metadata-extractor-409961c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-XLYvG0tt6VRiiV6F_SJi

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 web-metadata-extractor-409961c7 -d '<json body>'
```

Example prompt: Can you extract the metadata from https://techcrunch.com/2024/01/15/ai-startup-funding — I need the page title, meta description, Open Graph tags, and any schema.org structured data it has?

## When to prefer this

Choose this endpoint when you need fast, structured extraction of HTML metadata (titles, Open Graph, schema.org, canonical URLs) from a web page without needing to parse or process the full page body. It is ideal for link preview generation, SEO audits, content indexing, and metadata enrichment pipelines. Prefer this over a full web scraper when you only need head-level metadata and want a clean JSON response at low cost ($0.01 USDC per call via x402 micropayment).

## Known failure modes

- URL is unreachable or returns a non-200 status — result may be empty or partial
- Page uses heavy JavaScript rendering and metadata is not in static HTML — dynamic content may not be extracted
- URL is behind a paywall or authentication — returns empty or minimal metadata
- Malformed or missing input URL — returns validation error
- Rate limiting or bot protection on target site — request may fail or return blocked page metadata
- Network timeout on slow-loading pages — may return partial results with warnings

## How this service works

Agent-ready x402 APIs for AI video production, audio localization, web research, document extraction, data analysis, and structured JSON transformation.

## Output

Returns a JSON object with status, request_id, and a result object containing extracted metadata fields such as page title, meta description, Open Graph properties (og:title, og:description, og:image, og:url), Twitter card tags, canonical URL, keywords, author, favicon URL, schema.org structured data, and any other HTML head metadata. May include a usage object and warnings array for partial extraction cases.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  },
  "options": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status",
  "request_id",
  "result"
 ],
 "properties": {
  "usage": {
   "type": "object"
  },
  "result": {
   "type": "object",
   "additionalProperties": true
  },
  "status": {
   "type": "string"
  },
  "payment": {
   "type": "object",
   "additionalProperties": true
  },
  "warnings": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "model_used": {
   "type": "string"
  },
  "request_id": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-metadata-extractor-409961c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402cloud.space](https://www.zero.xyz/host/api.x402cloud.space/llms.txt)
