# Strale Timezone Lookup

> Strale Timezone Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-15).

Returns IANA timezone, current UTC offset, DST status, and local time for a given country code, city name, or coordinates.

## Facts

- Endpoint: GET https://api.strale.io/x402/timezone-lookup
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-28813838
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AuKNwH4jOPbCi0mLGqn9R

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 api-strale-io-28813838
```

Example prompt: What IANA timezone, current UTC offset, and DST status apply to 'Chicago' right now?

## When to prefer this

Use this endpoint when you need authoritative IANA timezone data including real-time DST status and local time for any location specified by city name, country code, or lat/lon coordinates. Prefer this over static timezone databases when up-to-date DST transitions matter.

## Known failure modes

- Ambiguous city name resolves to unexpected location (e.g. multiple cities named 'Springfield')
- Invalid or unrecognized country code returns error
- Coordinates outside any timezone boundary return error
- Query string missing returns 400 validation error
- Payment not provided or insufficient USDC results in 402 payment required

## How this service works

Get timezone information for a country code, city name, or coordinates. Returns IANA timezone, current UTC offset, DST status, and current local time.

## Output

Returns the IANA timezone identifier (e.g. 'America/Chicago'), current UTC offset in hours, whether DST is currently active, and the current local time at the queried location.

## Example request

```json
{
 "query": "New York"
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Country code, city name, or coordinates"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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