# x402.forgemesh.io Timezone Converter

> x402.forgemesh.io 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 wall-clock time from one IANA timezone to another with correct daylight saving time handling, returning the local time, UTC ISO, and Unix epoch.

## Facts

- Endpoint: POST https://x402.forgemesh.io/convert-timezone
- 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/x402-forgemesh-io-timezone-converter-4348e115
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_48S6fslh11tNK-kGGy54r

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 x402-forgemesh-io-timezone-converter-4348e115 -d '<json body>'
```

Example prompt: What time is 3:00 PM on 2025-06-15 in Tokyo (Asia/Tokyo) when converted to Chicago time (America/Chicago)?

## When to prefer this

Use this endpoint when you need a deterministic, DST-aware timezone conversion with structured output (local time + UTC ISO + epoch) for scheduling, calendar agents, or any workflow that must reliably bridge wall-clock times across global timezones. Prefer it over manual offset arithmetic or ambiguous UTC-offset lookups.

## Known failure modes

- Invalid IANA timezone string 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 (time, from, or to) causes a 400-type error
- Payment failure or insufficient USDC balance returns a 402 response

## How this service works

Timezone converter API: convert a wall-clock time from one IANA timezone to another with daylight-saving applied correctly — returns converted local time, UTC ISO, and unix epoch. 'What is 3pm Tokyo for Chicago?' deterministically. For scheduling and calendar agents.

## Output

Returns the converted local time in the target timezone, the equivalent UTC ISO 8601 timestamp, and the Unix epoch integer — all computed with correct daylight saving time rules for the given date.

## 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/x402-forgemesh-io-timezone-converter-4348e115/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)
