# PennyRail Web Page Meta Extraction

> PennyRail Web Page Meta Extraction is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Extracts machine-readable metadata from a web page URL, returning structured page meta information

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/mini/web.page-meta--proven-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/pennyrail-web-page-meta-extraction-5c7886fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yvAb9Yjo3uHAbXKsGuYd7

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 pennyrail-web-page-meta-extraction-5c7886fa -d '<json body>'
```

Example prompt: Can you pull the metadata from https://example.com/article — I need the page title, description, and any Open Graph tags it has?

## When to prefer this

Choose this endpoint when you need lightweight, machine-readable page metadata (title, description, OG tags) from a URL without full HTML parsing or content scraping. It is well-suited for link preview generation, SEO audits, content enrichment pipelines, and social sharing workflows where structured meta fields are sufficient. Prefer it over full-page scrapers when you only need head-level metadata rather than body content.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — extraction fails with an error response
- Target page has no meta tags — returns an empty or minimal metadata object
- JavaScript-rendered pages may not expose meta tags to server-side fetching — incomplete results
- Malformed or missing input object — returns a validation or bad request error
- Rate limiting or network timeout when fetching the target URL — service error returned

## How this service works

Machine-readable settlement service

## Output

Returns a structured object containing page metadata fields extracted from the target web page, typically including page title, meta description, Open Graph properties (og:title, og:description, og:image), canonical URL, and other standard HTML meta tags available on the page.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-web-page-meta-extraction-5c7886fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pennyrail.vercel.app](https://www.zero.xyz/host/pennyrail.vercel.app/llms.txt)
