# PadelMaps Reverse Geocode

> PadelMaps Reverse Geocode is a paid API for AI agents from padelmaps.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Converts latitude/longitude coordinates into a structured postal address including street, city, state, and country details

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-tools/reverse-geocode
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/padelmaps-org-b4337bd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cggZqFfZu9KOzJX9FlDW3

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 padelmaps-org-b4337bd6 -d '<json body>'
```

Example prompt: What's the street address at coordinates 40.7128 latitude, -74.0060 longitude?

## When to prefer this

Choose this endpoint when you need to convert raw GPS coordinates into a detailed postal address, especially when you need granular sub-address fields like neighbourhood, quarter, suburb, and house number alongside standard city/state/country data. Useful for agents enriching location data, logging user positions as readable addresses, or displaying human-friendly place names in apps.

## Known failure modes

- Invalid or out-of-range latitude/longitude values returns an error
- Coordinates in remote or unmapped areas may return partial address data
- Missing required latitude or longitude fields causes a validation error
- Network timeout or service unavailability returns a 5xx error
- Payment failure via x402 protocol results in 402 Payment Required

## How this service works

Convert coordinates to address

## Output

Returns a structured address object with fields including road, house_number, neighbourhood, suburb, quarter, city, county, state, postcode, country, country_code, and ISO3166-2 region code, plus a human-readable display_name string and the original coordinates. Also indicates whether the result was served from cache.

## Example request

```json
{
 "latitude": 40.7128,
 "longitude": -74.006
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "latitude": {
       "type": "number",
       "description": "Latitude in decimal degrees. Alias: 'lat'"
      },
      "longitude": {
       "type": "number",
       "description": "Longitude in decimal degrees. Alias: 'lon'"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "cached": {
       "type": "boolean"
      },
      "address": {
       "type": "object"
      },
      "latitude": {
       "type": "number"
      },
      "longitude": {
       "type": "number"
      },
      "display_name": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

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