# GeoPlace Reverse Geocoding

> GeoPlace Reverse Geocoding is a paid API for AI agents from geoplace.melis.ai, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Converts a latitude/longitude coordinate pair into a human-readable address or place name

## Facts

- Endpoint: GET https://geoplace.melis.ai/reverse
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geoplace-melis-ai-d1436d8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CX90kzUvu61uYgCFgIkcx

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 geoplace-melis-ai-d1436d8c
```

Example prompt: What's the address or place name at coordinates 40.7128° N, 74.0060° W?

## When to prefer this

Use this endpoint when you have a latitude/longitude coordinate and need to resolve it to a human-readable address or place name, especially in automated agent workflows that accept per-call micropayments via x402 protocol at low cost ($0.001 per call).

## Known failure modes

- Invalid or out-of-range coordinates (lat outside -90 to 90, lon outside -180 to 180) returning an error
- Coordinates in a remote area with no associated address data returning null or empty result
- Missing required lat or lon parameter causing a 400 bad request
- Payment failure or insufficient USDC balance causing a 402 Payment Required response

## How this service works

GeoPlace /reverse: $0.001 per reverse-geocode

## Output

A human-readable address or place name corresponding to the provided latitude and longitude coordinates, including details such as street, city, region, and country.

## Example request

```json
{
 "lat": 40.7128,
 "lon": -74.006
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "description": "Latitude"
  },
  "lon": {
   "type": "number",
   "description": "Longitude"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/geoplace-melis-ai-d1436d8c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from geoplace.melis.ai](https://www.zero.xyz/host/geoplace.melis.ai/llms.txt)
