# API Zavod OpenGraph Metadata Extraction

> API Zavod OpenGraph Metadata Extraction is a paid API for AI agents from it.finlandfoxvpn.shop, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches and extracts OpenGraph metadata tags (og:title, og:description, og:image, etc.) from any given webpage URL

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/web/opengraph
- 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/api-zavod-opengraph-metadata-extraction-20b0f5ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_No-_DHqlNpCqOtwoHVev9

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 api-zavod-opengraph-metadata-extraction-20b0f5ec
```

Example prompt: Can you pull the OpenGraph metadata from https://techcrunch.com/2024/01/15/openai-news/ — I need the og:title, og:description, and og:image to build a link preview card.

## When to prefer this

Use this endpoint when you need to quickly extract structured OpenGraph social preview metadata from a URL without running a full browser render. Ideal for building link preview cards, enriching bookmark or article databases, auditing OG tag presence, or feeding social metadata into downstream workflows. Prefer this over a full-page scraper when you only need OG tags and not full DOM content.

## Known failure modes

- Target URL is unreachable or returns non-2xx status — empty or error response
- Target page has no OpenGraph tags — returns empty opengraph object with count 0
- Invalid or malformed URL input — request validation error
- Target site blocks crawlers/bots — may return incomplete or empty metadata
- Timeout on slow-loading pages — partial or no data returned

## How this service works

OpenGraph metadata extraction / Извлечение OpenGraph

## Output

Returns a JSON object containing the page URL, an 'opengraph' object with all detected OG tag key-value pairs (e.g. og:title, og:description, og:image, og:url, og:type, og:site_name), and a count of how many OG tags were found.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/",
  "opengraph": {
   "og:title": "Example"
  },
  "количество": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-opengraph-metadata-extraction-20b0f5ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from it.finlandfoxvpn.shop](https://www.zero.xyz/host/it.finlandfoxvpn.shop/llms.txt)
