# KiHustle Timezone Converter

> KiHustle Timezone Converter is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Converts a given hour and minute from one timezone to another, returning the equivalent local time in the target timezone.

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/timezone-converter
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-timezone-converter-6a0f0b9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MfaLGUJMCYJ68QfBuKZt0

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 kihustle-timezone-converter-6a0f0b9c -d '<json body>'
```

Example prompt: Can you convert 14:30 from America/New_York to Europe/Berlin so I know what time a meeting would be for my colleague there?

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call timezone conversion without setting up a full datetime library or SDK. Suitable for single time conversions (hour + minute) between IANA timezone identifiers. Prefer alternatives if you need full datetime conversion with dates, DST-aware scheduling across multiple times, or bulk batch conversions.

## Known failure modes

- Invalid or unrecognized timezone string in from_tz or to_tz (e.g. misspelled IANA tz name) — may return error or unexpected result
- Hour value outside 0–23 or minute value outside 0–59 may cause validation failure
- Missing required fields (from_tz or to_tz) may result in a 400-level error
- Generic success envelope {'result':'processed','status':'success'} provides minimal detail — exact converted time format is unclear from schema

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field containing the converted time and a 'status' field indicating success. The converted time reflects the equivalent hour and minute in the target timezone.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "hour": {
   "type": "integer"
  },
  "to_tz": {
   "type": "string"
  },
  "minute": {
   "type": "integer"
  },
  "from_tz": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

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