# AGISHub Multi-Page Site Crawler

> AGISHub Multi-Page Site 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-15).

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: GET https://api.agishub.com/v1/crawl
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agishub-multi-page-site-crawler-891a123e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yHv18njJzdp-W-f_ZMG_Z

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-site-crawler-891a123e
```

Example prompt: Crawl the entire docs.example.com website up to 3 levels deep, grab up to 50 pages, and return everything as markdown so I can process the content.

## When to prefer this

Use this endpoint when you need to crawl many pages of a website at once rather than fetching a single URL. It is ideal for bulk content ingestion, documentation processing, or competitive research where you need structured markdown or HTML from an entire domain up to a configurable depth. Prefer it over single-page fetchers when the target site has multiple linked pages you need to process together.

## Known failure modes

- Invalid or unreachable root URL returns an error
- Exceeding max 100 pages per call requires multiple calls
- max_depth above 10 or limit above 100 rejected by schema validation
- Non-public or auth-gated sites may return empty or partial results
- Job ID lookup needed separately to retrieve async results after submission

## 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 job_id immediately (HTTP 202) for async processing. Once complete, results include per-page content in the requested formats (markdown and/or HTML), one entry per crawled page, up to the specified page limit.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "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
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "Crawl multiple pages of a site, respecting link depth and domain limits. Returns async job_id; results include markdown "
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-multi-page-site-crawler-891a123e/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)
