# fittings Timezone Converter

> fittings Timezone Converter is a paid API for AI agents from fittings.sh, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Converts an ISO 8601 instant to a target IANA timezone, returning local wall time, UTC offset, and DST state.

## Facts

- Endpoint: GET https://fittings.sh/v1/time/timezone-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/fittings-timezone-converter-c572a9c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7vKhDuBoxS1vjN6sgADfg

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 fittings-timezone-converter-c572a9c8
```

Example prompt: What local time does 2026-08-09T14:00:00Z correspond to in America/New_York, and is daylight saving time in effect there?

## When to prefer this

Use this endpoint when you need authoritative timezone conversion including DST state for a specific historical or future instant, especially when IANA zone accuracy and offset precision matter. Prefer this over client-side date libraries when the conversion must be reliable across DST boundaries or for obscure IANA zones. It is ideal for agents that need to localize UTC timestamps for display, scheduling, or compliance without bundling a timezone database.

## Known failure modes

- Invalid or malformed ISO 8601 instant returns a 400 error
- Unrecognized IANA timezone identifier returns a 400 error
- Missing required query parameters (instant or toTimezone) returns a 400 error
- Payment failure or insufficient balance returns a 402 error

## How this service works

Convert an instant between IANA timezones, returning the local wall time, UTC offset and DST state.

## Output

Returns the local wall clock time in the target IANA timezone for the given instant, along with the UTC offset (e.g. +05:30) and whether daylight saving time is currently in effect at that moment.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "instant",
      "toTimezone"
     ],
     "properties": {
      "instant": {
       "type": "string",
       "description": "ISO 8601 instant, e.g. 2026-08-09T14:00:00Z"
      },
      "toTimezone": {
       "type": "string",
       "description": "IANA zone, e.g. Europe/London"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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