# Coinslot Timezone Converter

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

Convert a timestamp between up to 20 IANA timezones, returning local times, UTC offsets, weekday, and hour-of-day per zone with correct DST handling.

## Facts

- Endpoint: POST https://coinslot.dev/api/timezone
- 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/coinslot-timezone-converter-08767c78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YLy_liLORIXY5lKFhzX2P

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 coinslot-timezone-converter-08767c78 -d '<json body>'
```

Example prompt: What time is 2025-06-15T14:00:00 UTC in New York, London, Tokyo, and Sydney? I need the local time, UTC offset, and weekday for each.

## When to prefer this

Choose this endpoint when you need DST-aware, multi-zone timezone conversion in a single call — especially when converting one source time to many targets simultaneously (up to 20 zones). It's ideal for scheduling agents, internationalization workflows, and log timestamp normalization where correct DST handling is critical. Prefer it over manual offset math or generic date libraries when you need enriched output like weekday and hour-of-day alongside the converted time.

## Known failure modes

- Invalid IANA timezone string returns an error for that zone
- More than 20 target zones in the `to` array exceeds the limit and is rejected
- Malformed or unparseable `time` value (not ISO, epoch, or 'now') causes a parsing error
- Missing `to` field returns a validation error
- Invalid epoch integer may be misinterpreted as milliseconds vs seconds

## How this service works

Convert a timestamp between IANA timezones with DST handled correctly. Returns local times, UTC offsets, weekday, and hour-of-day per zone. POST { time?, from?, to } — to is a zone or array (max 20).

## Output

For each target timezone, the endpoint returns the local time representation, the UTC offset (accounting for DST), the weekday name, and the hour-of-day. Results are keyed per zone so multi-zone responses are easy to map.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "description": "IANA zone or array of zones (max 20)"
  },
  "from": {
   "type": "string",
   "description": "IANA zone the input wall-clock is in"
  },
  "time": {
   "description": "ISO string, epoch, or 'now'"
  }
 }
}
```

## More

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