# AGISHub Multi-Page Web Crawler

> AGISHub Multi-Page Web Crawler is a paid API for AI agents from api.agishub.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Asynchronously crawls multiple pages of a website up to a configurable link depth and page limit, returning markdown or HTML content per page via a job ID.

## Facts

- Endpoint: POST https://api.agishub.com/paid/crawl
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agishub-multi-page-web-crawler-b1041a30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FlTR9erN-LbveQWe1tJEK

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 agishub-multi-page-web-crawler-b1041a30 -d '<json body>'
```

Example prompt: Crawl https://docs.example.com and fetch up to 50 pages going 3 levels deep, and give me all the content as markdown.

## When to prefer this

Use this endpoint when you need to bulk-extract content from many pages of a site in a single async call, especially when you need markdown output ready for LLM ingestion or RAG pipelines. It is preferable over single-page scrapers when you need multi-level link traversal across an entire domain. Choose it when you want structured per-page results without managing your own crawler infrastructure.

## Known failure modes

- Invalid or unreachable root URL returns an error with no job_id
- Exceeding max 100 pages per call results in a validation error
- max_depth above 10 is rejected with a schema validation error
- Private or bot-protected sites may return empty or blocked page content
- Async job may time out for very large crawls near the 100-page limit
- Non-URI formatted url parameter causes a 400 bad request

## How this service works

Crawl multiple pages of a site, respecting link depth and domain limits. Returns async job_id; results include markdown or HTML per page. Use it to fetch and process many pages of content at once.

## Output

Returns a 202 response with an async job_id. When complete, results include per-page records containing the page URL, markdown text, and optionally raw HTML. For sites larger than 100 pages, multiple calls can be chained using the same pricing model.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Root domain URL to crawl (e.g., https://example.com)."
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 0,
       "description": "Maximum pages to crawl (default 100, max 100 per call). Returns 202 with job_id for async processing. For larger sites, issue several calls: each one is priced the same, so 1.000 pages cost ten calls.",
       "exclusiveMinimum": true
      },
      "formats": {
       "type": "array",
       "items": {
        "enum": [
         "markdown",
         "html"
        ],
        "type": "string"
       },
       "description": "Output formats per page (default ['markdown']). 'html' adds raw HTML."
      },
      "max_depth": {
       "type": "integer",
       "maximum": 10,
       "minimum": 0,
       "description": "Maximum link depth from root (default 2, max 10). Depth 0 = root only, depth 1 = root + direct children.",
       "exclusiveMinimum": true
      },
      "same_domain": {
       "type": "boolean",
       "description": "Only crawl URLs on the same domain (default true). Subdomain links are excluded when false."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-multi-page-web-crawler-b1041a30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agishub.com](https://www.zero.xyz/host/api.agishub.com/llms.txt)
