# Bolt Geo IP Lookup

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

Geolocates an IP address and returns geographic data about its location

## Facts

- Endpoint: POST https://datault.orbonomy.xyz/api/geo
- 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/bolt-geo-ip-lookup-9de84cf0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cbl8yVbZvn9F8yBPkrYOx

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-geo-ip-lookup-9de84cf0 -d '<json body>'
```

Example prompt: Can you geolocate the IP address 203.0.113.42 and tell me what country, city, and region it's coming from?

## When to prefer this

Use this endpoint when you need a quick, pay-per-use IP geolocation lookup within an AI agent workflow, especially when already using the Bolt toolkit ecosystem. Good for lightweight per-request enrichment where you don't want a subscription-based geolocation service.

## Known failure modes

- Invalid or malformed IP address returns an error or empty data
- Private/reserved IP addresses (e.g. 192.168.x.x) may not resolve to a geographic location
- Payment failure via x402 results in 402 status and no data returned
- Timeout if the geolocation database is unavailable
- IP not found in database returns empty or null data fields

## 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 geographic information about the provided IP address, such as country, city, region, and possibly coordinates or ISP details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ip": {
   "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-geo-ip-lookup-9de84cf0/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)
