# Bolt Geo IP Lookup

> Bolt Geo IP Lookup is a paid API for AI agents from bolt.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://bolt.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-1dc0125e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gShXwoj0wl-O0iDPygt5O

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-1dc0125e -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 ISP it belongs to?

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-use IP geolocation as part of an agentic workflow and want to pay in USDC via x402 without a subscription. Ideal for ad-hoc IP enrichment tasks in automated pipelines.

## Known failure modes

- Invalid or malformed IP address returns an error or empty data
- Private/reserved IP ranges (e.g. 192.168.x.x, 127.0.0.1) may return no geolocation data
- Payment failure (insufficient USDC balance) results in 402 response
- Service unavailable or timeout results in a 5xx error
- Missing IP field in request body may return 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 data object containing geographic details for the provided IP address, such as country, city, region, latitude/longitude, ISP, and timezone, along with a success boolean indicating whether the lookup succeeded.

## 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-1dc0125e/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)
