# Bolt Domain Lookup

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

Looks up information and data about a given domain name

## Facts

- Endpoint: POST https://bolt.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-a7966967
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yKwN9qgrcgVTedPOZgdxq

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-a7966967 -d '<json body>'
```

Example prompt: Can you look up domain information for example.com and tell me what you find?

## When to prefer this

Use this endpoint when you need quick, pay-per-request domain lookup without managing API keys or subscriptions. Prefer it when operating in an x402-enabled payment environment and need domain metadata on demand.

## Known failure modes

- Invalid or malformed domain name input returns error
- Domain not found or unresolvable returns empty or failed response
- Network timeout or service unavailability returns failure
- Payment failure via x402 prevents request from completing

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