# CelerAPI Timezone Lookup

> CelerAPI Timezone Lookup is a paid API for AI agents from www.celerapi.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current local time, UTC offset, and timezone abbreviation for a given IANA timezone identifier, optionally at a specified point in time.

## Facts

- Endpoint: GET https://www.celerapi.com/v1/timezone/%7Btime_zone%7D
- 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/celerapi-timezone-lookup-c1a06b76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PFPjgBRGCxlJvW9vkJ0sH

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 celerapi-timezone-lookup-c1a06b76
```

Example prompt: What's the current local time and UTC offset for the America/Chicago timezone right now?

## When to prefer this

Choose this endpoint when you need authoritative, structured timezone data (local time, UTC offset, DST abbreviation) for a known IANA timezone identifier without managing a timezone library yourself. Ideal for lightweight, per-request lookups in agent workflows where installing and maintaining a timezone library is impractical. Priced at $0.001 USDC per call with no API key required, making it accessible for ad-hoc or low-volume use cases.

## Known failure modes

- Invalid or unrecognized IANA timezone name returns an error
- Malformed 'at' datetime query parameter (wrong format) results in a validation error
- Payment not provided or insufficient results in HTTP 402
- Truncated response indicated by 'complete: false' flag in response body

## How this service works

Resolve companies, legal entities and financial reference data using authoritative sources. Machine-native, pay per request, no subscription.

## Output

A JSON object containing the resolved timezone name, current or specified UTC time, corresponding local time, UTC offset in minutes, timezone abbreviation (e.g. EST, CET), and a data version string sourced from the IANA Time Zone Database. Also includes a provenance block with source, license, and freshness metadata.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "time_zone"
     ],
     "properties": {
      "time_zone": {
       "type": "string",
       "example": "America/Port_of_Spain",
       "examples": [
        "America/Port_of_Spain"
       ],
       "maxLength": 100,
       "minLength": 1
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "at": {
       "type": "string",
       "format": "date-time",
       "example": "2026-09-07T12:00:00Z",
       "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$",
       "examples": [
        "2026-09-07T12:00:00Z"
       ]
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "complete",
      "data",
      "warnings",
      "provenance"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "time_zone",
        "utc_time",
        "local_time",
        "utc_offset_minutes",
        "abbreviation",
        "data_version"
       ],
       "properties": {
        "utc_time": {
         "type": "string",
         "format": "date-time",
         "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
        },
        "time_zone": {
         "type": "string"
        },
        "local_time": {
         "type": "string"
        },
        "abbreviation": {
         "type": "string"
        },
        "data_version": {
         "type": "stri
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "complete": true,
  "warnings": [],
  "provenance": {
   "source": "IANA Time Zone Database via ECMAScript Intl",
   "license": "Public domain",
   "provider": "iana_tzdb",
   "freshness": "reference",
   "source_url": "https://www.iana.org/time-zones"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/celerapi-timezone-lookup-c1a06b76/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.celerapi.com](https://www.zero.xyz/host/www.celerapi.com/llms.txt)
