# Pagesnap Metadata Extraction API

> Pagesnap Metadata Extraction API is a paid API for AI agents from pagesnap.142-93-197-141.sslip.io, paid per call via x402, $0.002/call, status down (last checked 2026-09-16).

Fetches metadata (title, URL, ok status) from any public web page URL

## Facts

- Endpoint: GET https://pagesnap.142-93-197-141.sslip.io/x402/v1/meta
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagesnap-metadata-extraction-api-9c4f17dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rHohJdOOCrqhZILrpH3BE

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 pagesnap-metadata-extraction-api-9c4f17dd
```

Example prompt: Can you grab the metadata for https://example.com — I just want to know the page title and whether it loads successfully?

## When to prefer this

Use this endpoint when you only need lightweight metadata (title and reachability status) from a public URL without the overhead of full content extraction, screenshots, or PDF rendering. Ideal for link validation, bookmark enrichment, or quick page-existence checks at low cost ($0.002 per call).

## Known failure modes

- Private or localhost URLs return an error or ok:false
- Paywalled or bot-protected pages may return incomplete metadata
- Malformed URLs cause validation errors
- Timeout on very slow-loading pages
- Non-HTML resources (PDFs, images) may return no title

## How this service works

Turn any public URL into clean Markdown, a screenshot, a PDF or metadata with one API. Free tier, no signup and a remote MCP server for AI agents.

## Output

Returns a JSON object with an 'ok' boolean indicating whether the page was successfully fetched, the resolved 'url', and the page 'title' extracted from the HTML.

## 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": "Public HTTP(S) URL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "url": {
       "type": "string"
      },
      "title": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "url": "https://example.com",
  "title": "Example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagesnap-metadata-extraction-api-9c4f17dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagesnap.142-93-197-141.sslip.io](https://www.zero.xyz/host/pagesnap.142-93-197-141.sslip.io/llms.txt)
