Time-zone conversion on the IANA database: convert a time between zones with offsets, abbr
Time-zone conversion on the IANA database: convert a time between zones with offsets, abbreviations and DST flags, describe zones at an instant, or compute the shared business-hours window across several zones for meeting scheduling.
1000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
workbot1.oddsys.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x15459498e1191d8787c83177809bd54022fA18c4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"from": "Europe/Berlin",
"time": "2026-09-17T14:00",
"to": [
"America/New_York",
"Asia/Tokyo"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"body": {
"from": "object — { zone, local, offset, offsetMinutes, abbreviation, weekday, isDST, observesDST }",
"instant": "string (UTC ISO)",
"overlap": "object (overlap mode) — { minutes, utc, local[] } or null",
"results": "array of the same shape per target zone",
"unix": "number"
},
"bodyType": "json",
"example": {
"from": {
"abbreviation": "GMT+2",
"isDST": true,
"local": "2026-09-17T14:00:00",
"observesDST": true,
"offset": "+02:00",
"offsetMinutes": 120,
"weekday": "Thu",
"zone": "Europe/Berlin"
},
"input": {
"interpretedIn": "Europe/Berlin",
"time": "2026-09-17T14:00"
},
"instant": "2026-09-17T12:00:00.000Z",
"results": [
{
"abbreviation": "EDT",
"isDST": true,
"local": "2026-09-17T08:00:00",
"observesDST": true,
"offset": "-04:00",
"offsetMinutes": -240,
"weekday": "Thu",
"zone": "America/New_York"
},
{
"abbreviation": "GMT+9",
"isDST": false,
"local": "2026-09-17T21:00:00",
"observesDST": false,
"offset": "+09:00",
"offsetMinutes": 540,
"weekday": "Thu",
"zone": "Asia/Tokyo"
}
],
"unix": 1789646400
}
}
},
"routeTemplate": "/tz",
"schema": {
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"from": {
"description": "IANA zone the naive time is in (default UTC).",
"type": "string"
},
"list": {
"description": "true → return all supported IANA zone ids.",
"type": "boolean"
},
"overlap": {
"description": "{ zones: [...], date?: YYYY-MM-DD, hours?: [9,17] } — shared business-hours window across zones.",
"type": "object"
},
"time": {
"description": "ISO 8601 time. Without an offset it is read as wall-clock time in from (default: now).",
"type": "string"
},
"to": {
"description": "Target zone or zones (≤50).",
"items": {
"type": "string"
},
"type": [
"string",
"array"
]
},
"zones": {
"description": "Alias of to.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
}
}
}
}Use it
curl
curl "https://workbot1.oddsys.org/tz" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://workbot1.oddsys.org/tz");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://workbot1.oddsys.org/tz")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8671.json, and this resource appears in /discovery/resources and /discovery/search.