# fittings Zone Clock

> fittings Zone Clock is a paid API for AI agents from fittings.sh, paid per call via x402, $0.00338/call, status unknown (last checked 2026-09-15).

Returns the current (or a specified) time in up to 20 IANA time zones simultaneously, including UTC offset, abbreviation, and DST status.

## Facts

- Endpoint: GET https://fittings.sh/v1/time/zone-clock
- Price: $0.00338/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-zone-clock-6f215f53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mOwqwzQXGeMDSXIBvjPZn

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-zone-clock-6f215f53
```

Example prompt: What time is it right now in America/New_York, Europe/London, Asia/Tokyo, and Australia/Sydney — including whether DST is active and the UTC offset for each?

## When to prefer this

Use this endpoint when you need to resolve current or historical wall-clock times across multiple IANA zones in a single request, especially when you need UTC offsets, abbreviations, and DST state together. It is ideal for scheduling assistants, world-clock displays, and timezone-aware data pipelines. Prefer it over manual UTC arithmetic when DST correctness matters or when you need to query more than one zone at once.

## Known failure modes

- Invalid or unrecognized IANA zone name returns an error for that zone
- More than 20 zones requested triggers a validation error
- Malformed ISO 8601 instant string causes a parse error
- Empty zones array fails required field validation
- Network timeout on the upstream time service

## How this service works

Renders one instant, or now, in up to 20 IANA zones at once with UTC offset, abbreviation and DST state.

## Output

Returns a structured response for each requested IANA zone containing the local time at the given instant (or now), the UTC offset in hours/minutes, the timezone abbreviation (e.g. EST, JST, CEST), and whether DST is currently active — for up to 20 zones in a single call.

## 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": [
      "zones"
     ],
     "properties": {
      "zones": {
       "type": "array",
       "description": "IANA zone names, 1-20"
      },
      "instant": {
       "type": "string",
       "description": "Optional ISO 8601 instant; defaults to now"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-zone-clock-6f215f53/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)
