# Pagesnap Extract – URL to Markdown/Content Extractor

> Pagesnap Extract – URL to Markdown/Content Extractor 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 a public URL and returns its page content as clean Markdown text along with the page title

## Facts

- Endpoint: GET https://pagesnap.142-93-197-141.sslip.io/x402/v1/extract
- 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-extract-url-to-markdown-content-extractor-879c410a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HcxnmDLiOrnlEudpWPCAN

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-extract-url-to-markdown-content-extractor-879c410a
```

Example prompt: Grab the content of https://en.wikipedia.org/wiki/Artificial_intelligence and give it to me as clean markdown text.

## When to prefer this

Choose this endpoint when you need to extract clean, readable Markdown content from a public URL quickly and cheaply ($0.002 per call). It's ideal for ingesting web pages into AI pipelines, summarization workflows, or document processing tasks where you want structured text output without building your own scraper. Prefer this over browser automation tools when the page is publicly accessible and you need only the text content.

## Known failure modes

- URL is not publicly accessible (private, behind auth wall) — returns ok:false or error
- Timeout exceeded (max 45 seconds) — returns timeout error
- Invalid or malformed URL — schema validation error on required 'url' parameter
- Page returns non-200 status — extraction may fail or return empty content
- JavaScript-heavy single-page apps may return incomplete content if not fully rendered

## 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

A JSON object with an 'ok' boolean indicating success, a 'title' string containing the page title, and a 'content' string containing the extracted page content in clean Markdown format.

## 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"
      },
      "timeout": {
       "type": "integer",
       "maximum": 45000,
       "minimum": 3000
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "title": {
       "type": "string"
      },
      "content": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "title": "Example",
  "content": "Extracted page content"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagesnap-extract-url-to-markdown-content-extractor-879c410a/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)
