# timezone-info

> timezone-info is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Resolves a place name to its IANA timezone, current local time, UTC offset, DST status, and abbreviation.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/timezone
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/timezone-info-48cae359
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_prCsF3w85qmLrfjH8J9im

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 timezone-info-48cae359
```

Example prompt: What's the current local time and timezone info for Mumbai — I need the IANA zone name, UTC offset, and whether daylight saving is active right now?

## When to prefer this

Choose this endpoint when you need to resolve a human-readable place name directly to full timezone metadata including IANA zone, UTC offset, DST flag, and abbreviation in a single call. Prefer it over manual timezone databases when you want a managed, up-to-date lookup without maintaining your own data. Best for scheduling agents, calendar tools, and display layers that need structured timezone data from a natural place name input.

## Known failure modes

- Ambiguous or misspelled place name returns an error or incorrect timezone
- Place name not recognized returns a 404 or empty result
- Network timeout on the lookup service
- Payment failure via x402 protocol blocks the request
- Place name resolves to multiple candidate regions causing ambiguity

## How this service works

Timezone for a place: IANA zone name, current local time, UTC offset, whether daylight saving is in effect, and the abbreviation, resolved from the place name. Schedule across regions correctly. $0.01 per lookup.

## Output

Returns the IANA timezone zone name (e.g. 'America/New_York'), the current local time at that location, the UTC offset as a signed hours value, a boolean indicating whether daylight saving time is currently in effect, and the timezone abbreviation (e.g. 'EDT').

## 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",
     "properties": {}
    }
   },
   "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/timezone-info-48cae359/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
