# Timezone Converter API

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

Converts a datetime string from one IANA timezone to another

## Facts

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

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-converter-api-b251a302
```

Example prompt: What time is 2024-06-15T09:00:00 in America/New_York when converted to Europe/Paris?

## When to prefer this

Use this endpoint when you need a simple, low-latency single datetime timezone conversion using IANA timezone identifiers. Ideal for scheduling, display, or normalization tasks where you have a specific ISO 8601 or human-readable datetime and need it expressed in another timezone.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error
- Malformed datetime string (non-ISO 8601 and unrecognizable) returns a parse error
- Missing required parameters (datetime, from, or to) returns a bad request error
- Payment failure or insufficient USDC balance returns a 402 Payment Required error

## How this service works

Convert a datetime between timezones

## Output

The agent receives the converted datetime value expressed in the target IANA timezone, allowing it to display or use the equivalent local time at the destination timezone.

## 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')"
  }
 }
}
```

## More

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