# Reverse Geocoding – Coordinates to Address

> Reverse Geocoding – Coordinates to Address is a paid API for AI agents from mcpfax-utility.bowling-anthony.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Converts geographic coordinates (latitude/longitude) into the nearest human-readable street address.

## Facts

- Endpoint: GET https://mcpfax-utility.bowling-anthony.workers.dev/v1/reverse-geocode
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reverse-geocoding-coordinates-to-address-f6052efe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dOq0sPxHizf5lPp1Xval6

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 reverse-geocoding-coordinates-to-address-f6052efe
```

Example prompt: What's the street address at coordinates 40.7580° N, 73.9855° W? I need the full postal address for that location.

## When to prefer this

Use this endpoint when you have raw latitude/longitude coordinates and need a human-readable address — e.g. from GPS hardware, photo EXIF data, map clicks, or device location APIs. Prefer this over forward geocoding when you already have coordinates and need the address, not the other way around.

## Known failure modes

- Coordinates over open ocean or remote wilderness may return no address or only a country/region
- Invalid or out-of-range coordinate values (e.g. lat > 90) return a validation error
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- Ambiguous results in areas with poor geocoding data coverage

## How this service works

Reverse geocoding — Coordinates → nearest address.

## Output

Returns the nearest street address for the given coordinates, typically including street number, street name, city, region/state, postal code, and country.

## 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"
    }
   },
   "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/reverse-geocoding-coordinates-to-address-f6052efe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-utility.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-utility.bowling-anthony.workers.dev/llms.txt)
