# Cerwal Sitemap Fetcher

> Cerwal Sitemap Fetcher is a paid API for AI agents from cerwal.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Fetches and parses the sitemap of a given domain URL, returning structured site structure data for AI agents

## Facts

- Endpoint: POST https://cerwal.vercel.app/api/sitemap
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cerwal-sitemap-fetcher-e50c3680
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9xTSz7KUah4zPmzqCfBD6

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 cerwal-sitemap-fetcher-e50c3680 -d '<json body>'
```

Example prompt: Can you fetch the sitemap for example.com and show me all the pages listed there?

## When to prefer this

Use this endpoint when you need to quickly discover all published URLs on a domain without manually crawling each page. It is best suited for sitemap-first discovery tasks such as SEO audits, content inventories, and competitor research where structured sitemap data is sufficient. Prefer this over full-page crawl endpoints when you only need URL structure rather than page content.

## Known failure modes

- Domain has no sitemap.xml or robots.txt sitemap reference — returns empty or error data
- Invalid or unreachable URL input — network timeout or DNS failure
- Domain blocks automated crawlers — returns 403 or empty response
- Malformed sitemap XML on the target site — parse errors in data
- Rate limiting or Vercel cold-start latency on first request

## 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 entries for the given domain, typically including a list of URLs and potentially metadata such as last-modified dates and change frequencies found in the 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/cerwal-sitemap-fetcher-e50c3680/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cerwal.vercel.app](https://www.zero.xyz/host/cerwal.vercel.app/llms.txt)
