# AGISHub Crawl Map

> AGISHub Crawl Map is a paid API for AI agents from api.agishub.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Discovers and returns all URLs reachable from a root domain up to a configurable link depth, with optional regex filtering and subdomain inclusion.

## Facts

- Endpoint: GET https://api.agishub.com/v1/crawl-map
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agishub-crawl-map-930c016e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jj7QxOaGI_DoP4IIZftrt

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-crawl-map-930c016e
```

Example prompt: Can you map out all the URLs reachable from https://example.com, up to 150 URLs, and only include ones that match '/blog'?

## When to prefer this

Choose this endpoint when you need to enumerate URLs across an entire domain before crawling individual pages, or when you need a sitemap-like structure without access to an XML sitemap. It is best suited for pre-crawl reconnaissance, SEO audits, or building structured link graphs. Prefer this over single-page scraping when the goal is discovery rather than content extraction, and over sitemap parsing when no sitemap.xml is available or when you need to verify actually reachable links.

## Known failure modes

- Invalid or unreachable root URL returns an error response
- Limit of 0 or exceeding 200 returns a validation error
- Robots.txt disallowing crawl may result in empty or partial results
- Regex pattern syntax errors may cause filtering to fail
- Sites with JavaScript-only navigation may return fewer URLs than expected

## How this service works

Discover all URLs reachable from a domain within a link depth limit. Returns a flat list of absolute URLs, respects robots.txt crawl delays. Use it to map a site's structure before crawling.

## Output

A flat JSON list of absolute URLs discovered by following links from the root domain, up to the specified limit. Results respect robots.txt crawl delays and can be optionally filtered by a regex/string pattern and optionally expanded to include subdomains.

## 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 map (e.g., https://example.com)."
      },
      "limit": {
       "type": "integer",
       "maximum": 200,
       "minimum": 0,
       "description": "Maximum URLs to return (default 100, max 200 per call). Respects robots.txt crawl-delay.",
       "exclusiveMinimum": true
      },
      "search": {
       "type": "string",
       "description": "Optional regex or plain string to filter results (case-insensitive)."
      },
      "include_subdomains": {
       "type": "boolean",
       "description": "Include URLs from subdomains (default false, same domain only)."
      }
     },
     "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": "Discover all URLs reachable from a domain within a link depth limit. Returns a flat list of absolute URLs, respects robo"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-crawl-map-930c016e/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)
