# Crawol Domain Info Lookup

> Crawol Domain Info Lookup is a paid API for AI agents from crawol.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Looks up structured data about a domain name via a pay-per-request web crawl API using x402 micropayments

## Facts

- Endpoint: POST https://crawol.vercel.app/api/domain
- 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/crawol-domain-info-lookup-5b122852
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zuxJqKYiFHP6s2SSNRQAq

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 crawol-domain-info-lookup-5b122852 -d '<json body>'
```

Example prompt: Look up the domain info for example.com and give me whatever structured data you can pull about it — no account needed, just pay per request.

## When to prefer this

Choose this endpoint when you need a no-signup, no-subscription, pay-per-request domain data lookup via x402 micropayments in USDC. Ideal for AI agents that need occasional domain intelligence without committing to a recurring plan. Not suited for bulk domain crawling or full website scraping.

## Known failure modes

- Invalid or malformed domain string returns an error or empty data object
- Domain not found or unreachable may return success: false
- Payment failure via x402 prevents the request from being processed
- Rate limits or server errors on the Vercel deployment may cause timeouts

## 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 structured information about the queried domain, scraped from the web on demand.

## 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/crawol-domain-info-lookup-5b122852/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawol.vercel.app](https://www.zero.xyz/host/crawol.vercel.app/llms.txt)
