# Bolt Geo IP Lookup

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

Looks up geolocation data for a given IP address, returning geographic and network information.

## Facts

- Endpoint: POST https://deltadata.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-20b71817
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E5EePVXNCwnMZwganRomt

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

Example prompt: Can you look up the geolocation for the IP address 203.0.113.42 and tell me what country, city, and region it belongs to?

## When to prefer this

Use this endpoint when you need to enrich an IP address with geographic metadata as part of an automated agent workflow, especially when paying per-request via USDC is acceptable and you want a simple, single-field POST interface.

## Known failure modes

- Invalid or malformed IP address returns an error or empty data
- Private/reserved IP ranges (e.g. 192.168.x.x) may return no geolocation data
- IPv6 addresses may not be supported or may return limited data
- Service unavailable if upstream geo database is unreachable
- Missing ip field in request body causes 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 geographic details for the given IP address, such as country, city, region, coordinates, and potentially ISP or timezone information.

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