# Pagesnap Crawl API

> Pagesnap Crawl API is a paid API for AI agents from pagesnap.142-93-197-141.sslip.io, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Crawls a public URL and returns multiple pages as clean Markdown or JSON, following links up to a configurable depth

## Facts

- Endpoint: POST https://pagesnap.142-93-197-141.sslip.io/x402/v1/crawl
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagesnap-crawl-api-d763cec1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2G5-4nTiayzjLNG6etMyJ

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-crawl-api-d763cec1 -d '<json body>'
```

Example prompt: Crawl https://docs.example.com up to 3 levels deep, stay on the same origin, follow the sitemap, grab up to 20 pages, and give me everything as markdown.

## When to prefer this

Choose this endpoint when you need to crawl multiple linked pages from a site in one call rather than fetching a single page. It is ideal for ingesting documentation, blogs, or small websites into a pipeline, especially when you want recursive link-following controlled by depth and same-origin constraints. Prefer a single-page fetch endpoint if you only need one URL.

## Known failure modes

- Target site blocks crawlers or returns non-200 responses, resulting in empty or partial pages array
- Depth or limit exceeded — capped at max_depth=20 and limit=25
- Private or localhost URLs cannot be accessed
- Payment failure via x402 protocol returns 402 before crawl begins
- Very large or slow sites may time out before all pages are retrieved

## 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 containing a 'pages' array (each entry holding the URL and extracted content in the requested format) plus a 'stats' object with the number of pages requested/processed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 25,
   "minimum": 1
  },
  "format": {
   "enum": [
    "markdown",
    "json"
   ],
   "type": "string"
  },
  "exclude": {
   "type": [
    "string",
    "array"
   ]
  },
  "include": {
   "type": [
    "string",
    "array"
   ]
  },
  "max_depth": {
   "type": "integer",
   "maximum": 20,
   "minimum": 0
  },
  "same_origin": {
   "type": "boolean"
  },
  "use_sitemap": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pages": [],
  "stats": {
   "requested": 5
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagesnap-crawl-api-d763cec1/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)
