# Pagesnap Read Endpoint — URL to Markdown/Text/HTML/JSON/ARIA/Links

> Pagesnap Read Endpoint — URL to Markdown/Text/HTML/JSON/ARIA/Links is a paid API for AI agents from pagesnap.142-93-197-141.sslip.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Fetches any public URL and returns its content converted to Markdown, plain text, HTML, JSON, ARIA, or extracted links

## Facts

- Endpoint: GET https://pagesnap.142-93-197-141.sslip.io/x402/v1/read
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagesnap-read-endpoint-url-to-markdown-text-html-json-aria-links-8d704edd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VWCijZdtcu5frBjDL_IcA

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-read-endpoint-url-to-markdown-text-html-json-aria-links-8d704edd
```

Example prompt: Can you fetch the page at https://en.wikipedia.org/wiki/Markdown and convert it to clean markdown format, rendering JavaScript if needed?

## When to prefer this

Choose this endpoint when you need to convert a public web URL into structured or readable text (especially Markdown) for downstream LLM processing, document parsing, or content extraction. It supports optional JavaScript rendering, making it suitable for SPAs and dynamic pages. Prefer it over generic HTTP fetchers when you want the content cleaned up and formatted, not raw HTML. Particularly useful for AI agent pipelines that ingest web content.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns an error or empty content
- Timeout exceeded (max 45000ms) if page is slow to load
- JavaScript rendering timeout if 'render' is true and the page is complex
- Invalid or malformed URL input causes a 400-level error
- Private/intranet URLs that the server cannot reach
- Rate limiting or payment failure on the x402 micropayment layer

## 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 a 'content' string (the page content in the requested format, e.g. Markdown, plain text, HTML, JSON, ARIA tree, or a list of links) and a 'contentType' string indicating the MIME type of the returned content (e.g. 'text/markdown', 'text/plain').

## 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"
      },
      "wait": {
       "type": "integer",
       "maximum": 10000,
       "minimum": 0
      },
      "format": {
       "enum": [
        "markdown",
        "text",
        "html",
        "json",
        "aria",
        "links"
       ],
       "type": "string"
      },
      "render": {
       "type": "boolean"
      },
      "timeout": {
       "type": "integer",
       "maximum": 45000,
       "minimum": 3000
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "content",
      "contentType"
     ],
     "properties": {
      "content": {
       "type": "string"
      },
      "contentType": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "content": "# Example\n",
  "contentType": "text/markdown"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagesnap-read-endpoint-url-to-markdown-text-html-json-aria-links-8d704edd/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)
