# DataVault Domain Lookup

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

Looks up real-world data associated with a given domain name, returning structured information about that domain.

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/domain
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-domain-lookup-c6fc0622
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z89yu_Ur-IIssSECA1SEP

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 datavault-domain-lookup-c6fc0622 -d '<json body>'
```

Example prompt: Can you look up the domain data for shopify.com and tell me what you find about it?

## When to prefer this

Use this endpoint when you need structured real-world data about a specific domain name and want a pay-per-call model via USDC on Base. Prefer this over manual WHOIS lookups or DNS queries when you need aggregated domain intelligence in a single API call.

## Known failure modes

- Invalid or malformed domain string returns an error response
- Domain not found or no data available results in empty data object
- Network timeout or upstream provider failure returns a non-200 response
- Missing required 'domain' field causes a validation error

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing structured information about the queried domain, such as registration details, hosting info, or other domain-level metadata.

## Request schema (JSON Schema)

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

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