# MicroScrape Metadata Extractor

> MicroScrape Metadata Extractor is a paid API for AI agents from microscrape-production.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches a webpage and extracts its page title, meta description, Open Graph tags, and favicon URL

## Facts

- Endpoint: GET https://microscrape-production.up.railway.app/api/v1/metadata
- 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/microscrape-metadata-extractor-33b8fb27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n4veU7bjVS-JflOis3-fz

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 microscrape-metadata-extractor-33b8fb27
```

Example prompt: Can you grab the page title, meta description, Open Graph tags, and favicon from https://stripe.com so I can build a link preview card?

## When to prefer this

Choose this endpoint when you need lightweight webpage metadata — title, description, OG tags, and favicon — without downloading full page content. Ideal for generating link preview cards, auditing SEO meta tags, or enriching URLs with social preview data. Prefer this over full-page scraping endpoints (like the Markdown extractor sibling) when you only need structured head-level metadata rather than body content.

## Known failure modes

- URL is unreachable or returns non-200 status — likely returns an error with request_id and empty fields
- Webpage has no meta tags — og object and description will be null or empty
- URL parameter missing — returns 400-style validation error
- Target page blocks scrapers via robots.txt or Cloudflare — may return empty or error response
- Invalid URL format — schema validation rejects the request

## How this service works

MicroScrape: page title, meta description, Open Graph tags, and favicon

## Output

Returns a JSON object containing the page's title string, meta description (or null), a nested og object with all Open Graph tag key-value pairs found on the page, the favicon URL (or null), the canonical URL scraped, and a request_id string for tracing.

## 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",
       "description": "URL to fetch metadata for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "request_id",
      "url",
      "title",
      "description",
      "og",
      "favicon"
     ],
     "properties": {
      "og": {
       "type": "object"
      },
      "url": {
       "type": "string"
      },
      "title": {
       "type": "string"
      },
      "favicon": {
       "type": [
        "string",
        "null"
       ]
      },
      "request_id": {
       "type": "string"
      },
      "description": {
       "type": [
        "string",
        "null"
       ]
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/microscrape-metadata-extractor-33b8fb27/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from microscrape-production.up.railway.app](https://www.zero.xyz/host/microscrape-production.up.railway.app/llms.txt)
