# Daylight Saving Time Timezone Converter

> Daylight Saving Time Timezone Converter is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Converts a local datetime from one IANA timezone to another, correctly applying DST transitions, and returns local time, UTC ISO, and Unix epoch.

## Facts

- Endpoint: POST https://x402.forgemesh.io/daylight-saving-time-check
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/daylight-saving-time-timezone-converter-bd7be306
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m9Q3ZKSe4l7e-yFIysZ9U

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 daylight-saving-time-timezone-converter-bd7be306 -d '<json body>'
```

Example prompt: What time does a 3:00 PM meeting on March 9, 2025 in America/New_York land in America/Los_Angeles — make sure you account for daylight saving time so the hour is right?

## When to prefer this

Use this endpoint when you need to correctly convert a local datetime across a DST boundary and require both local time and UTC/epoch outputs for downstream calendar or reminder systems. Prefer it over a generic timezone offset API when the conversion date may straddle a DST changeover and a one-hour error would cause a scheduling mistake.

## Known failure modes

- Invalid IANA timezone name returns an error (e.g. 'US/Eastern' vs 'America/New_York')
- Malformed datetime string not matching YYYY-MM-DD HH:MM format
- Missing required fields (from, to, or time) cause validation error
- Ambiguous local times during DST fallback (e.g. 1:30 AM when clocks fall back) may return without disambiguation

## How this service works

Converts a given local time between IANA timezones with daylight-saving transitions applied correctly, so a meeting scheduled across the DST changeover lands on the right hour instead of one off. Returns local time, UTC ISO, and unix epoch for downstream calendar and reminder systems.

## Output

Returns the converted local time in the target timezone, the corresponding UTC ISO 8601 timestamp, and the Unix epoch (seconds since 1970-01-01T00:00:00Z), all with DST transitions correctly applied.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string"
  },
  "from": {
   "type": "string"
  },
  "time": {
   "type": "string",
   "description": "YYYY-MM-DD HH:MM in from-zone"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "utc": "2026-07-20T06:00:00.000Z",
  "converted": "2026-07-20T01:00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/daylight-saving-time-timezone-converter-bd7be306/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
