# WhisperBox x402 Timezone Conversion

> WhisperBox x402 Timezone Conversion is a paid API for AI agents from x402.whisperbox.my.id, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts the current time from one timezone to another, returning the local time in the target timezone.

## Facts

- Endpoint: GET https://x402.whisperbox.my.id/x402/time
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whisperbox-x402-timezone-conversion-87f7748d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SbSeMzgfHc7VI3MS3g6Ui

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 whisperbox-x402-timezone-conversion-87f7748d
```

Example prompt: What time is it in Tokyo right now if I'm in WIB (Jakarta)? Convert from WIB to JST.

## When to prefer this

Choose this endpoint when you need a quick, payment-gated timezone conversion between two IANA/abbreviation-style timezone codes and want a lightweight, real-time result without setting up a full-featured timezone library. Particularly useful for AI agents operating in the x402 micropayment ecosystem that already handle USDC payments on Base.

## Known failure modes

- Invalid or unrecognized timezone code in 'from' or 'to' parameters returns an error
- Missing required 'from' or 'to' query parameters causes a 400 Bad Request
- Payment not fulfilled results in a 402 Payment Required response
- Network timeout or upstream service unavailability returns a 5xx error

## How this service works

x402 payment-gated data suite for AI agents. Multi-chain gas fees across 12 EVM networks with real-time comparison, history, and recommendations. Plus currency rates, timezone conversion, and QR code generate/scan. $0.01-$0.02 USDC on Base.

## Output

Returns a JSON object with the converted time between the specified source ('from') and target ('to') timezone abbreviations, showing what the current time is in the destination timezone.

## 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": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string"
      },
      "from": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "JST",
  "from": "WIB"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whisperbox-x402-timezone-conversion-87f7748d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.whisperbox.my.id](https://www.zero.xyz/host/x402.whisperbox.my.id/llms.txt)
