# Cerawal Sitemap Crawler

> Cerawal Sitemap Crawler is a paid API for AI agents from cerawal.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Fetches and returns the sitemap data for a given domain URL, paid per-request via x402/USDC

## Facts

- Endpoint: POST https://cerawal.vercel.app/api/sitemap
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cerawal-sitemap-crawler-c87fa530
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dgcu4DnmdxYu8g52BC-5F

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 cerawal-sitemap-crawler-c87fa530 -d '<json body>'
```

Example prompt: Can you grab the sitemap for example.com and show me what pages are listed there?

## When to prefer this

Use this endpoint when you need to quickly discover the URL structure or indexed pages of a website without authentication setup or subscriptions, and are willing to pay $0.15 USDC per call via x402. Ideal for AI agents that need one-off sitemap lookups rather than a recurring subscription crawl service.

## Known failure modes

- Domain has no sitemap — data may be empty or success may be false
- Invalid or malformed URL input causes request rejection
- Domain is unreachable or returns a non-200 response
- Payment via x402 fails or USDC balance insufficient — request not processed
- Rate limiting or timeouts on large or slow domains

## 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 for the requested domain, including URLs and structure as discovered from the site's sitemap.

## 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/cerawal-sitemap-crawler-c87fa530/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cerawal.vercel.app](https://www.zero.xyz/host/cerawal.vercel.app/llms.txt)
