# Cravvol Sitemap Fetcher

> Cravvol Sitemap Fetcher is a paid API for AI agents from cravvol.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches and returns the sitemap for a given domain URL via a pay-per-request web crawling API

## Facts

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

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 cravvol-sitemap-fetcher-b6bd1b63 -d '<json body>'
```

Example prompt: Can you fetch the sitemap for https://example.com and give me a list of all the pages on that site?

## When to prefer this

Use this endpoint when you need to programmatically retrieve a website's sitemap without setting up authentication or subscriptions — ideal for AI agents that need quick, pay-per-use sitemap access via x402 USDC micropayments.

## Known failure modes

- Invalid or unreachable domain URL returns error or success:false
- Domain has no sitemap.xml and returns empty or failed data
- Payment failure via x402 if USDC balance is insufficient
- Timeout if the target site is slow to respond
- Malformed URL input causes request validation error

## 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 sitemap contents retrieved from the given domain, typically listing discoverable URLs or page structure.

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