# klymax402 Timezone Converter

> klymax402 Timezone Converter is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Converts a date/time from one IANA timezone to another, returning the converted time, UTC equivalent, and offset difference.

## Facts

- Endpoint: GET https://klymax402.com/api/timezone-converter/api/convert
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-timezone-converter-55e9c78a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dt1WIh2s2Hu_TjeZ4jetV

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 klymax402-timezone-converter-55e9c78a
```

Example prompt: What time is 2:30pm on January 15, 2024 in New York (America/New_York) when converted to Paris time (Europe/Paris)?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call timezone conversion without managing API keys. Ideal for AI agents that occasionally need to convert datetimes across IANA timezones and want to avoid subscription overhead. At $0.003/call it is cost-effective for low-to-medium volume use cases.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error
- Malformed datetime string that cannot be parsed returns a parse error
- Missing required parameters (from, to, or datetime) may result in a 400-level error
- Payment failure or insufficient USDC balance returns a 402 Payment Required response

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object with the converted datetime in the target timezone, the equivalent UTC time, details about both the source and target timezones (including offset and name), and the offset difference between the two zones.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "Target IANA timezone (e.g. Europe/Paris)"
  },
  "from": {
   "type": "string",
   "description": "Source IANA timezone (e.g. America/New_York)"
  },
  "datetime": {
   "type": "string",
   "description": "Date/time string (ISO 8601 or human-readable, e.g. '2024-01-15T14:30:00')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": {},
  "utc": "example",
  "from": {},
  "input": {},
  "offsetDifference": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-timezone-converter-55e9c78a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
