# Timezone Current Time with DST Lookup

> Timezone Current Time with DST Lookup is a paid API for AI agents from engedi.digi-life17.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the current local time for any IANA timezone, including daylight saving time (DST) status

## Facts

- Endpoint: GET https://engedi.digi-life17.workers.dev/api/timezones
- 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/timezone-current-time-with-dst-lookup-139772a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TYpUVERB7zEOxDF_T3rSm

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-current-time-with-dst-lookup-139772a3
```

Example prompt: What's the current local time in America/New_York, and is daylight saving time active right now?

## When to prefer this

Use this endpoint when you need the current real-world local time for a specific IANA timezone, especially when DST accuracy is important. Prefer this over static UTC offset lookups when you need live, DST-aware time data without building timezone logic yourself.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error or empty data object
- Missing timezone query parameter may return a default or error
- Cached data may be slightly stale as indicated by the 'cached' boolean and 'last_updated' field
- Network or worker timeout could result in a failed request

## How this service works

51 REST endpoints for AI agents. Weather, news, crypto, stocks, products, courses, real estate, and 42 more. Pay per call in USDC/USDT via x402.

## Output

Returns a JSON object with current local time data for the requested IANA timezone, including DST information, UTC offset, and confidence/freshness metadata indicating whether the data was cached and when it was last updated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "timezone": {
       "type": "string",
       "description": "IANA timezone (e.g. America/New_York)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object"
    },
    "_meta": {
     "type": "object",
     "properties": {
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "string"
      },
      "confidence": {
       "type": "number"
      },
      "last_updated": {
       "type": "string"
      }
     }
    },
    "success": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/timezone-current-time-with-dst-lookup-139772a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from engedi.digi-life17.workers.dev](https://www.zero.xyz/host/engedi.digi-life17.workers.dev/llms.txt)
