# Suverse IP Geolocation (via ip-api.com)

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

Geolocates an IP address and returns country, region, city, ZIP, lat/lon, timezone, ISP, organization, and AS number via ip-api.com (keyless proxy).

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-net-ip-geo
- Price: $0.0015/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-via-ip-api-com-5abff2d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6lZDCfaSCMlZGE6_NZVF7

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-via-ip-api-com-5abff2d4 -d '<json body>'
```

Example prompt: Can you geolocate the IP address 8.8.8.8 and tell me which country, city, ISP, and AS number it belongs to?

## When to prefer this

Choose this endpoint when you need a keyless, pay-per-call IP geolocation lookup without managing api-api.com API keys directly. It is ideal for agents that need to enrich individual IPs with full location and network owner metadata on-demand, especially in agentic workflows where credential management is impractical.

## 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 location data
- ip-api.com rate limits or downtime cause proxy failures
- Missing or malformed request body returns a 4xx error
- Payment failure via x402 protocol blocks the request

## How this service works

Geolocate an IP address via keyless ip-api.com. Returns country, region, city, zip, lat/lon, timezone, ISP, org and AS number. For agents enriching IPs with location and network owner.

## Output

Returns a JSON object with the IP's geographic details (country, region, city, ZIP, latitude, longitude, timezone) and network details (ISP name, organization, and AS number), sourced from ip-api.com.

## 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-via-ip-api-com-5abff2d4/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)
