# Cerawal Domain Crawl

> Cerawal Domain Crawl is a paid API for AI agents from cerawal.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches and returns scraped web data for a given domain name, payable per-request in USDC via x402.

## Facts

- Endpoint: POST https://cerawal.vercel.app/api/domain
- 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/cerawal-domain-crawl-72858013
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B2JZblcZcscotpaC0Yuag

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-domain-crawl-72858013 -d '<json body>'
```

Example prompt: Can you scrape and return the web content for the domain example.com for me?

## When to prefer this

Use this endpoint when you need lightweight, pay-per-use web scraping of a specific domain without needing API keys, subscriptions, or account setup — particularly suitable for AI agents that can handle x402 micropayment flows in USDC.

## Known failure modes

- Invalid or malformed domain name returns error
- Domain is unreachable or returns no content
- Payment not completed via x402 results in 402 response
- Rate limiting or server-side timeout on the target domain
- Non-existent domain returns failure response

## How this service works

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

## Output

A JSON object with a 'success' boolean and a 'data' object containing scraped content retrieved from the specified domain.

## Request schema (JSON Schema)

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

## 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-domain-crawl-72858013/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)
