# Webber Sites IP Geolocation API

> Webber Sites IP Geolocation API is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns country, region, city, coordinates, and timezone for any IPv4 or IPv6 address via fast in-memory lookup

## Facts

- Endpoint: GET https://api.webbersites.com/api/geo
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webber-sites-ip-geolocation-api-51a9527f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_apn6RE828-VeGKWeG_fm7

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 webber-sites-ip-geolocation-api-51a9527f
```

Example prompt: Where is the IP address 203.0.113.47 located — I need the country, city, region, coordinates, and timezone.

## When to prefer this

Choose this endpoint when you need fast, in-memory IP geolocation with country, region, city, coordinates, and timezone in a single call — especially for analytics pipelines, fraud detection, or real-time personalization. Prefer it over heavier geolocation services when low latency and per-call micropayment pricing ($0.001 USDC) is acceptable.

## Known failure modes

- Invalid IP address format returns an error or empty result
- Private/reserved IP ranges (e.g. 192.168.x.x, 10.x.x.x) may return no geolocation data
- IPv6 addresses may have lower accuracy than IPv4
- Payment failure (402) if USDC balance is insufficient
- Rate limiting if too many requests are made in a short window
- Network timeout if the API is temporarily unavailable

## How this service works

IP geolocation: country, region, city, coordinates, and timezone for any IPv4 or IPv6 address. Fast in-memory lookup for analytics, fraud, and personalization agents.

## Output

A JSON object containing the queried IP address, country, region, city, latitude/longitude array, and timezone string. If no IP is provided, the caller's own IP is geolocated.

## 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",
     "properties": {
      "ip": {
       "type": "string",
       "description": "IPv4 or IPv6 address to locate. Omit to geolocate the caller."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ip": {
       "type": "string"
      },
      "ll": {
       "type": "array"
      },
      "city": {
       "type": "string"
      },
      "region": {
       "type": "string"
      },
      "country": {
       "type": "string"
      },
      "timezone": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ip": "8.8.8.8",
  "ll": [
   37.4056,
   -122.0775
  ],
  "city": "Mountain View",
  "region": "CA",
  "country": "US",
  "timezone": "America/Los_Angeles"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webber-sites-ip-geolocation-api-51a9527f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
