# IP Geolocation Lookup

> IP Geolocation Lookup is a paid API for AI agents from klymax402.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Looks up geographic location and network details for a given IP address, returning city, region, country, coordinates, ISP, ASN, and timezone.

## Facts

- Endpoint: GET https://klymax402.com/api/ip-geolocation/api/lookup
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ip-geolocation-lookup-308abd99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RIhEnbb7H5f69AYBDdQ7X

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 ip-geolocation-lookup-308abd99
```

Example prompt: Can you look up the geolocation of IP address 203.0.113.42 — I need to know the city, country, ISP, and coordinates?

## When to prefer this

Choose this endpoint when you need a quick, no-API-key IP geolocation lookup paid per-call via USDC on Base, especially within an agent workflow that already uses the klymax402 MCP bundle. Ideal for one-off lookups without committing to a dedicated geolocation subscription.

## Known failure modes

- Invalid or malformed IP address returns an error
- Private/reserved IP ranges (e.g. 192.168.x.x, 10.x.x.x) may return no geolocation data
- IPv6 addresses may not be supported or may return partial data
- Payment failure (insufficient USDC balance) returns HTTP 402
- Rate limiting or service downtime returns HTTP 5xx

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the IP address, ASN, ISP name, organization, city, region, country name, country code, latitude, longitude, timezone, and lookup time in milliseconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ip"
     ],
     "properties": {
      "ip": {
       "type": "string",
       "description": "IP address to lookup (e.g. 8.8.8.8)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ip": "example",
  "asn": "example",
  "isp": "example",
  "org": "example",
  "city": "example",
  "region": "example",
  "country": "example",
  "latitude": 1,
  "timezone": "example",
  "longitude": 1,
  "countryCode": "example",
  "lookup_time_ms": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ip-geolocation-lookup-308abd99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
