# AI Rook Timezone Converter

> AI Rook Timezone Converter is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a datetime string from one timezone to another, returning the converted time with offset information

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/timezone
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-timezone-converter-085f2fc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b07-J-cT1ZbAkzzcRMMET

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 ai-rook-timezone-converter-085f2fc4
```

Example prompt: Convert 2026-07-23T12:00:00 UTC to America/Phoenix time — what will the local time and UTC offset be?

## When to prefer this

Choose this endpoint when you need a simple, pay-per-call timezone conversion without API keys or signup, especially inside an agentic workflow already using x402/USDC micropayments on Base. It is well-suited for one-off or low-volume conversions where spinning up a dedicated timezone library or managing credentials is undesirable.

## Known failure modes

- Invalid or unrecognized timezone identifier returns an error
- Malformed datetime string causes parsing failure
- Missing required input fields results in a 400-level response
- Network or payment failure via x402 protocol prevents the call from completing

## How this service works

Timezone conversion

## Output

A JSON object containing the original input datetime, the source timezone (from_tz), the target timezone (to_tz), the UTC offset of the target timezone (e.g. '-07:00'), and the converted result datetime string in ISO 8601 format.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET"
     ]
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  }
 }
}
```

## More

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