# Agent Clock – Timezone Converter

> Agent Clock – Timezone Converter is a paid API for AI agents from agent-clock.annushka1190.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Converts a datetime from one timezone to another, returning the localized ISO 8601 timestamp for the target zone.

## Facts

- Endpoint: GET https://agent-clock.annushka1190.workers.dev/v1/tz/convert
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-clock-timezone-converter-a55b4237
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aIhT-2Y8fyoGB3NDCzksx

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 agent-clock-timezone-converter-a55b4237
```

Example prompt: What time does 2026-08-31 at 4pm UTC land in New York — give me the exact local time and offset?

## When to prefer this

Choose this endpoint when an AI agent needs a lightweight, no-API-key timezone conversion paid per-call via USDC x402. Ideal for scheduling agents, calendar automation, and deadline management workflows that require accurate IANA timezone conversions without managing credentials or subscriptions.

## Known failure modes

- Invalid or unrecognized IANA timezone name returns an error response
- Malformed datetime string causes a parse error
- Missing required query parameters results in a 400-level error
- Ambiguous local times during DST transitions may resolve to one side without warning
- Payment not provided or insufficient USDC results in 402 Payment Required

## How this service works

Time and schedule micro-tools for AI agents: UTC now, cron next-runs, timezone conversion, business-day math, and deadline checks. Pay with USDC via x402 — no API keys.

## Output

Returns a JSON object with the target timezone name (e.g. 'America/New_York') and the converted datetime as a full ISO 8601 string including UTC offset (e.g. '2026-08-31T12:00:00-04:00').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "zone": "America/New_York",
  "result": "2026-08-31T12:00:00-04:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-clock-timezone-converter-a55b4237/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-clock.annushka1190.workers.dev](https://www.zero.xyz/host/agent-clock.annushka1190.workers.dev/llms.txt)
