# API Zavod Web Page Metadata Extraction

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

Fetches and extracts core metadata (title, language, canonical URL, description) from any given web page URL

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/web/metadata
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-zavod-web-page-metadata-extraction-19e82cc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FHrMD5XJm35QfA4Dh_ciF

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-web-page-metadata-extraction-19e82cc5
```

Example prompt: Can you fetch the metadata for https://example.com — I need the page title, meta description, language, and canonical URL?

## When to prefer this

Use this endpoint when you need lightweight, structured metadata (title, description, language, canonical URL) from a single web page without full HTML parsing or JavaScript rendering. Prefer it over the sibling 'comprehensive site bundle' endpoint when you only need core meta tags and want a fast, low-cost call. It is ideal for link preview generation, SEO auditing, content cataloging, or language detection workflows.

## Known failure modes

- URL is unreachable or returns a non-200 status — may return null fields or an error
- Page has no meta description or canonical tag — those fields return null
- Invalid or malformed URL input — request rejected with validation error
- Page blocks crawlers (robots.txt or bot detection) — may return empty or partial metadata
- Network timeout on slow-loading pages — may result in incomplete extraction

## How this service works

Web page metadata extraction / Метаданные веб-страницы

## Output

Returns a JSON object containing the page's URL, title, detected language code, canonical URL (or null if absent), and meta description (or null if absent).

## 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/",
  "title": "Example Domain",
  "language": "en",
  "canonical": null,
  "description": null
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-web-page-metadata-extraction-19e82cc5/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)
