# Crawl by Orbonomy – Sitemap Fetcher

> Crawl by Orbonomy – Sitemap Fetcher is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches and returns the sitemap for a given domain URL, enabling AI agents to discover all indexed pages of a website

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/sitemap
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-by-orbonomy-sitemap-fetcher-3cd20eed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9d0p0KfZBOpqFH7r2MN3g

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 crawl-by-orbonomy-sitemap-fetcher-3cd20eed -d '<json body>'
```

Example prompt: Can you fetch the sitemap for orbonomy.xyz and show me all the pages that are indexed on that domain?

## When to prefer this

Use this endpoint when you need to programmatically discover all pages on a website without authentication or subscriptions. Ideal for AI agents that need to map a site's structure before scraping specific pages, or for SEO analysis and content auditing. Prefer this over manual sitemap parsing when you want a pay-per-use, no-setup approach via x402 USDC micropayments.

## Known failure modes

- Domain URL is unreachable or does not exist — returns success: false with error detail
- No sitemap found at the domain (no sitemap.xml or robots.txt pointer) — returns empty or error data
- Malformed URL input — validation error returned
- Payment failure via x402 — 402 response before processing begins
- Timeout if the target domain is slow to respond

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the parsed sitemap information, including URLs and structure discovered from the given domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Domain URL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crawl-by-orbonomy-sitemap-fetcher-3cd20eed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
