# Bolt Domain Lookup

> Bolt Domain Lookup is a paid API for AI agents from datault.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Looks up domain information and data for a given domain name

## Facts

- Endpoint: POST https://datault.orbonomy.xyz/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/bolt-domain-lookup-35ec31b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s571QC_kBScI72inzzvSK

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 bolt-domain-lookup-35ec31b7 -d '<json body>'
```

Example prompt: Can you look up domain information for 'example.com' and tell me what data comes back?

## When to prefer this

Use this endpoint when you need to quickly retrieve domain-level data or metadata for a given domain name and are operating within an x402 micropayment-enabled agentic workflow at $0.03 per call.

## Known failure modes

- Invalid or malformed domain string returns an error or empty data
- Domain not found in dataset returns success false or empty data object
- Network timeout or service unavailability returns a non-200 response
- Missing required 'domain' field in request body returns a validation error

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing domain-related information for the queried domain name.

## 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/bolt-domain-lookup-35ec31b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
