# ForgeKit Link Preview Metadata

> ForgeKit Link Preview Metadata is a paid API for AI agents from useforgekit.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Fetches Open Graph and link preview metadata (title, description, image, etc.) for any given URL

## Facts

- Endpoint: GET https://useforgekit.dev/api/v1/link-preview
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgekit-link-preview-metadata-b35151cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pBvqjRYmKZa9UGjx30Qmc

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 forgekit-link-preview-metadata-b35151cb
```

Example prompt: Can you fetch the link preview metadata — title, description, and image — for https://example.com/blog/my-article so I can see how it would look when shared on social media?

## When to prefer this

Choose this endpoint when you need to quickly extract Open Graph and link preview metadata from an arbitrary URL without building a scraper. It is ideal for enriching link databases, validating OG tags post-deploy, or rendering rich link cards. It costs only $0.001 per call, making it practical for bulk enrichment workflows. Prefer it over general-purpose scrapers when the specific goal is social/link preview metadata rather than full page content.

## Known failure modes

- URL is unreachable or returns a non-200 status — metadata may be empty or partial
- Target page has no Open Graph or meta tags — response returns empty or default fields
- URL parameter missing — request fails with validation error
- Target site blocks automated crawlers — may return incomplete metadata
- Malformed or invalid URL provided — request returns error

## How this service works

ForgeKit link preview metadata

## Output

Returns structured link preview metadata for the given URL, including Open Graph properties such as title, description, image URL, site name, and URL — the same data used to render rich previews when a link is shared on social platforms or messaging apps.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string"
      }
     }
    }
   },
   "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/forgekit-link-preview-metadata-b35151cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from useforgekit.dev](https://www.zero.xyz/host/useforgekit.dev/llms.txt)
