# geo.memoryapi.org Timezone Lookup

> geo.memoryapi.org Timezone Lookup is a paid API for AI agents from geo.memoryapi.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15, last successful call 2026-06-09).

Returns timezone information and country details for a given set of coordinates, IP address, or country code/name

## Facts

- Endpoint: GET https://geo.memoryapi.org/x402/geo/timezone
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-06-09
- Success rate: 100% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geo-memoryapi-org-7cb7cc78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m_SVTLK8YT9zjbDk5nKVL

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 geo-memoryapi-org-7cb7cc78
```

Example prompt: What timezone is the location at coordinates 48.8566, 2.3522 in — and can you also include the country details for France?

## When to prefer this

Choose this endpoint when you need to resolve timezone information from a variety of input types — coordinates, IP addresses, or country identifiers — in a single call that also returns country-level details. It is particularly useful for enriching location data with timezone context without needing separate geocoding and timezone APIs.

## Known failure modes

- Invalid or out-of-range coordinates return an error
- Unrecognized country code or name returns a not-found error
- Invalid IP address format returns a validation error
- Private/reserved IP ranges may not resolve to a timezone
- Service unavailable or rate limit exceeded returns a 402 or 5xx error

## How this service works

Geocoding, weather, and timezone data via x402 micropayments. Powered by OpenStreetMap Nominatim and Open-Meteo.

## Output

Returns the timezone name (e.g. 'Europe/Paris'), UTC offset, daylight saving time status, and country details such as country name, code, and related geographic metadata for the queried location.

## Example request

```json
{
 "lat": 48.8566,
 "lon": 2.3522
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "country": {
   "code": "DE",
   "name": "Germany",
   "capital": "Berlin",
   "currency": "Euro (EUR)",
   "languages": "German"
  },
  "success": true,
  "timezone": "Europe/Berlin",
  "utc_offset": "+1:00"
 }
}
```

## More

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