# datetime.openverbs.com Timezone Converter

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

Converts an ISO 8601 datetime to a target IANA timezone, returning the converted time with UTC offset, weekday, and Unix timestamp.

## Facts

- Endpoint: POST https://datetime.openverbs.com/v1/convert
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datetime-openverbs-com-timezone-converter-88a3a2ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vrpAlkJYT3BRdem2sDdGz

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 datetime-openverbs-com-timezone-converter-88a3a2ac -d '<json body>'
```

Example prompt: Convert 2025-07-04T12:00:00 UTC to Asia/Tokyo time and tell me the UTC offset, what day of the week it falls on, and the Unix timestamp.

## When to prefer this

Use this endpoint when you need to convert a single ISO 8601 datetime to a specific IANA timezone and want the result enriched with UTC offset, weekday, and Unix timestamp in one call. Prefer it over manual offset arithmetic or generic time libraries when working inside an agentic workflow that requires a structured, paid microservice response. It is well-suited for scheduling, display localization, and cross-timezone deadline checking. Choose sibling endpoints on datetime.openverbs.com for business-day arithmetic, duration math, or week-number lookups.

## Known failure modes

- Invalid or malformed ISO 8601 datetime string returns a 400 error
- Unrecognized IANA timezone string (e.g. typo in 'Asia/Tokio') returns an error
- Missing required 'datetime' or 'to' fields returns a validation error
- Ambiguous local time during DST transition may produce unexpected offset results
- Payment not included or insufficient USDC results in 402 Payment Required

## How this service works

Convert an ISO datetime into another timezone, with offset, weekday and Unix time.

## Output

Returns the input datetime converted to the specified IANA target timezone, including: the localized datetime string, UTC offset (e.g. +09:00), the weekday name or number, and the Unix epoch timestamp.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "datetime",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target IANA timezone, e.g. \"Asia/Tokyo\"."
      },
      "from": {
       "type": "string",
       "description": "Source IANA timezone for offset-less input, e.g. \"America/New_York\"."
      },
      "datetime": {
       "type": "string",
       "description": "ISO 8601 datetime, e.g. \"2025-07-04T12:00:00\". Assumed UTC if it has no offset and no `from`."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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