# Delx Timezone Lookup

> Delx Timezone Lookup is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns IANA timezone info including UTC offset, abbreviation, DST status, and current local time for a given timezone identifier

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/timezone
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-timezone-lookup-ee6bac5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Qeu6NwTFn2F08hCK4ur-

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 delx-timezone-lookup-ee6bac5e -d '<json body>'
```

Example prompt: What's the current local time, UTC offset, abbreviation, and DST status for the America/New_York timezone?

## When to prefer this

Choose this endpoint when you need lightweight, no-API-key timezone metadata (offset, abbreviation, DST, local time) from a canonical IANA zone name and want a deterministic, stdlib-backed result at very low cost ($0.002 USDC). Prefer it over geocoding-based timezone services when you already have the IANA identifier and don't need reverse lookup from coordinates or city names.

## Known failure modes

- Invalid or unrecognized IANA timezone name returns an error response
- Missing required body fields returns a validation error
- Ambiguous abbreviated timezone names (not IANA-canonical) may be rejected
- Network latency or service unavailability returns a timeout or 5xx error

## How this service works

IANA timezone lookup for agents: offset, abbreviation, DST and local time for $0.002 USDC—stdlib zoneinfo, no API key. Call when you need this bounded result without an API key or subscription. Returns machine-readable JSON via x402 on Base or Solana. Limitation: results cover only the supplied input or one bounded public endpoint at request time; callers must verify before acting.

## Output

A JSON object containing the IANA timezone identifier, current UTC offset (in hours/minutes), timezone abbreviation (e.g. EST, PDT), DST active flag (boolean), and the current local date-time in that zone — sourced from Python stdlib zoneinfo, no external dependencies.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

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