# Suverse Reverse Geocode

> Suverse Reverse Geocode is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Converts a latitude/longitude coordinate pair into a human-readable place name including city, locality, principal subdivision, country, and country codes via BigDataCloud.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-reverse-geocode
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-reverse-geocode-7165f80b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LX1GCdzquL_0vlnRoy3EF

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-reverse-geocode-7165f80b -d '<json body>'
```

Example prompt: What city and country are at coordinates 48.8566° N, 2.3522° E? I need the full place name including the administrative subdivision.

## When to prefer this

Use this endpoint when you need to convert raw GPS coordinates into human-readable place names without managing your own API key — ideal for AI agents enriching location data, tagging records, or presenting coordinates to end users in a readable format. It's a good fit when you need city, subdivision, and country in a single call and want a no-key, pay-per-use model.

## Known failure modes

- Invalid or out-of-range latitude/longitude values may return empty or null place fields
- Coordinates in remote oceans or uninhabited areas may return no city or locality
- Malformed request body returns a 400-level error
- Coordinates with low data coverage may return partial results (e.g. country only, no city)
- Payment not completed or incorrect x402 payment header returns 402 Payment Required

## How this service works

Reverse geocode a latitude and longitude to a place from BigDataCloud, no key. Returns city, locality, principal subdivision, country, and codes. For AI agents turning coordinates into place names.

## Output

Returns structured place data for the given coordinates including city name, locality, principal subdivision (e.g. state or province), country name, and country codes (ISO alpha-2/alpha-3), sourced from BigDataCloud's reverse geocoding service.

## 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-reverse-geocode-7165f80b/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)
