# Bolt IP Geolocation Lookup

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

Looks up geographic location and metadata for a given IP address

## Facts

- Endpoint: POST https://v0-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-ip-geolocation-lookup-13a96d97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8edt_6xrT69SUsM76sG6v

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-ip-geolocation-lookup-13a96d97 -d '<json body>'
```

Example prompt: Can you geolocate the IP address 203.0.113.47 and tell me what country, city, and timezone it belongs to?

## When to prefer this

Use this endpoint when you need to quickly geolocate a single IP address and receive structured geographic data including city, region, country, and timezone. Prefer this over general web lookups when you need machine-readable JSON output integrated into an agent workflow, and are willing to pay $0.02 USDC per lookup via x402.

## 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 return no geolocation data
- Payment failure via x402 results in 402 response and no data returned
- Unresolvable or unknown IPs may return partial or null location 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 flag and a data object containing geographic details for the queried IP address, such as country, city, region, latitude, longitude, timezone, and ISP 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-ip-geolocation-lookup-13a96d97/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
