# Suverse IP Geolocation Detail

> Suverse IP Geolocation Detail is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-15).

Geolocates any IPv4 or IPv6 address, returning country, region, city, ZIP, timezone, ISP, organization, AS number, and coordinates via ip-api.com proxy.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ip-geo-detail
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-ip-geolocation-detail-4923bcbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_avGAOjAsSpyHWZn0zzoBR

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 suverse-ip-geolocation-detail-4923bcbe -d '<json body>'
```

Example prompt: Can you look up the full geo details for IP address 203.0.113.42 — I need the country, city, ISP, AS number, timezone, and coordinates?

## When to prefer this

Choose this endpoint when you need a comprehensive geo profile from a single IP lookup without managing your own ip-api.com key or rate limits. Ideal for agents needing country, city, ISP, AS number, and coordinates in one call at a fixed per-call cost. Prefer over direct ip-api.com if you want a managed proxy with x402 micropayment billing.

## Known failure modes

- Invalid or malformed IP address returns an error or empty result
- Private/reserved IP ranges (e.g. 192.168.x.x, 10.x.x.x) may return no geo data
- ip-api.com rate limits or downtime cause upstream failures
- IPv6 addresses may have less precise geolocation data than IPv4
- Payment failure (x402) prevents the call from completing

## How this service works

Geolocate any IPv4/IPv6 address to country, region, city, ZIP, timezone, ISP, organization, AS number, and coordinates. Pass an IP, get a full geo profile. Free ip-api.com, no key required.

## Output

Returns a full geo profile for the queried IP address, including country, region, city, ZIP code, latitude/longitude coordinates, timezone, ISP name, organization name, and AS number. Based on ip-api.com data, no API key required.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-ip-geolocation-detail-4923bcbe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
