# ForgeMesh Link Preview Data Extractor

> ForgeMesh Link Preview Data Extractor is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Extracts title, description, thumbnail image, and social-sharing metadata from any public URL to render rich link preview cards

## Facts

- Endpoint: POST https://x402.forgemesh.io/link-preview-data
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-link-preview-data-extractor-6ffdd12c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CBApaVghpaKBjmgZoGlOo

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 forgemesh-link-preview-data-extractor-6ffdd12c -d '<json body>'
```

Example prompt: Can you pull the link preview data for https://www.theverge.com/2024/1/15/some-article — I need the title, description, and thumbnail image so I can render a preview card in my chat app.

## When to prefer this

Use this endpoint when you need to render rich link preview cards in chat apps, bookmarking tools, or content aggregators without loading the full page client-side. It is distinct from full-page scrapers because it is scoped only to preview metadata, has SSRF protection built in, and enforces a 512KB cap for safety. Prefer this over general-purpose scrapers when you specifically need OG tags, Twitter Card metadata, title, description, and thumbnail for a single URL at a time.

## Known failure modes

- URL points to an internal or private network address (SSRF-blocked, returns error)
- Response body exceeds 512KB cap (truncated or error returned)
- Target page has no Open Graph or meta tags (sparse/empty result)
- URL is unreachable or returns non-200 HTTP status
- Malformed or invalid URL input (validation error)
- Target page blocks bots or crawlers (may return partial data or error)

## How this service works

Link preview data extraction: pulls the title, description, thumbnail image, and social-sharing tags from any public web page so you can render a rich preview card without loading the page yourself. Guarded against internal-network requests and capped at 512KB. For chat apps, bookmarking tools, and content aggregators building link previews.

## Output

Returns the page title, meta description, thumbnail/hero image URL, and social-sharing tags (Open Graph, Twitter Card) extracted from the target URL, enabling rich preview card rendering without loading the full page in the client.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "og:title": "Micropayment",
   "description": "A micropayment is a financial transaction involving a very small sum of money..."
  },
  "title": "Micropayment - Wikipedia",
  "canonical": "https://en.wikipedia.org/wiki/Micropayment"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-link-preview-data-extractor-6ffdd12c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
