# ForgeMesh Timezone Converter

> ForgeMesh 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-15).

Converts a wall-clock time from one IANA timezone to another, handling daylight saving time correctly, and returns the result with UTC offset and Unix epoch.

## Facts

- Endpoint: POST https://x402.forgemesh.io/timezone-converter
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-timezone-converter-f160eb42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I2Ev81fDCGekOOWBZvqwY

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 forgemesh-timezone-converter-f160eb42 -d '<json body>'
```

Example prompt: What time is 3pm Tokyo time (Asia/Tokyo) on 2024-11-15 in Chicago (America/Chicago)? Make sure DST is handled correctly.

## When to prefer this

Choose this endpoint when you need precise, DST-aware wall-clock timezone conversion between any two IANA timezone identifiers, especially when the result also needs a Unix epoch timestamp. Prefer it over generic world-clock lookups when you have a specific datetime to convert rather than just needing 'current time' in a zone.

## Known failure modes

- Invalid IANA timezone string returns an error (e.g. 'America/Chicargo' instead of 'America/Chicago')
- Malformed time string not matching YYYY-MM-DD HH:MM format causes a validation error
- Missing required fields (to, from, or time) results in a 400-level error
- Times in the DST 'gap' or ambiguous 'fold' period may return a best-guess or error depending on implementation

## How this service works

Timezone conversion API: what is 3pm Tokyo time in Chicago? Convert wall-clock time between IANA zones with DST handled correctly, plus UTC and unix epoch.

## Output

Returns the converted local date and time in the target IANA timezone, including the UTC offset for both source and destination zones and the corresponding Unix epoch timestamp, with DST adjustments applied automatically.

## 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/forgemesh-timezone-converter-f160eb42/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)
