# Reverse Geocode: Coordinates to Address, Timezone & UTC Offset

> Reverse Geocode: Coordinates to Address, Timezone & UTC Offset is a paid API for AI agents from manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts latitude and longitude coordinates into a normalized address, IANA time zone identifier, and current UTC offset.

## Facts

- Endpoint: POST https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/maps/reverse-geocode
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reverse-geocode-coordinates-to-address-timezone-utc-offset-debbf01d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1GOHiR6O93HqJvBVF4S3e

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-geocode-coordinates-to-address-timezone-utc-offset-debbf01d -d '<json body>'
```

Example prompt: Can you look up the address and timezone for the coordinates 48.8566° N, 2.3522° E and give me the result in French?

## When to prefer this

Choose this endpoint when you need to resolve raw geographic coordinates (lat/lon) into a human-readable address AND simultaneously get the IANA timezone and UTC offset — avoiding two separate API calls. Ideal for enriching location data from GPS devices, geotagged records, or map clicks where only coordinates are available and you also need time zone context for scheduling or display.

## Known failure modes

- Coordinates out of valid range (-90 to 90 latitude, -180 to 180 longitude) return a validation error
- Coordinates in the middle of an ocean or uninhabited area may return no matching address
- Invalid language code format returns a schema validation error
- Payment failure or insufficient USDC balance returns a 402 error

## How this service works

ManyFish location resolver for reverse geocoding. Convert latitude and longitude into a normalized address, structured address components, IANA time zone, and current UTC offset.

## Output

Returns a normalized postal address, the IANA time zone identifier (e.g. 'America/Los_Angeles'), and the current UTC offset for the given latitude and longitude. The address is returned in the requested language if specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "language": {
   "type": "string",
   "pattern": "^[A-Za-z]{2,3}(?:-[A-Za-z0-9]{2,8})*$",
   "maxLength": 35,
   "minLength": 2
  },
  "latitude": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "longitude": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "type": "Address",
    "country": "United States",
    "latitude": 47.6205,
    "locality": "Seattle",
    "timeZone": "America/Los_Angeles",
    "longitude": -122.3493,
    "utcOffset": "-07:00",
    "confidence": "High",
    "matchCodes": [
     "Good"
    ],
    "postalCode": "98109",
    "streetName": "Broad St",
    "addressLine": "400 Broad St",
    "countryCode": "US",
    "streetNumber": "400",
    "adminDistrict": "Washington",
    "adminDistrict2": "King County",
    "formattedAddress": "400 Broad St, Seattle, WA 98109, United States",
    "adminDistrictCode": "WA"
   }
  ],
  "coordinates": {
   "latitude": 47.6205,
   "longitude": -122.3493
  },
  "utcOffsetAt": "2026-08-31T20:15:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reverse-geocode-coordinates-to-address-timezone-utc-offset-debbf01d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io](https://www.zero.xyz/host/manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/llms.txt)
