# Timezone Toolkit – Lookup Timezone

> Timezone Toolkit – Lookup Timezone is a paid API for AI agents from timezone-toolkit.agishub.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Resolves a city, region, or country name to its canonical IANA timezone identifier(s)

## Facts

- Endpoint: POST https://timezone-toolkit.agishub.com/paid/lookup-timezone
- 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/timezone-toolkit-lookup-timezone-7942b654
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WCwu4f6UhoVFElIuq2n9r

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 timezone-toolkit-lookup-timezone-7942b654 -d '<json body>'
```

Example prompt: What's the IANA timezone for Delhi? I need to schedule a meeting with someone there and want the exact timezone string like 'Asia/Kolkata'.

## When to prefer this

Use this endpoint when you need to resolve a human-readable place name (city, region, or country) into a machine-usable IANA timezone string for scheduling, calendar logic, or display purposes. Prefer it over hardcoding timezone mappings or using a general geocoding API that does not return IANA identifiers directly.

## Known failure modes

- Query string is too ambiguous or misspelled — returns empty matches array
- City name is valid but shared across multiple countries — may return multiple matches requiring disambiguation
- Unsupported or very obscure location names may yield no results
- Network or payment failure (x402) — returns 402 Payment Required if USDC payment is not attached

## How this service works

Timezone converter, world clock, date math & meeting scheduler for AI agents. Pay-per-call x402 endpoints (USDC on Base).

## Output

Returns a list of timezone matches, each containing the country name and the canonical IANA timezone string (e.g. 'Asia/Kolkata') corresponding to the queried city, region, or country name.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "Delhi",
  "matches": [
   {
    "country": "India",
    "timezone": "Asia/Kolkata"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/timezone-toolkit-lookup-timezone-7942b654/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from timezone-toolkit.agishub.com](https://www.zero.xyz/host/timezone-toolkit.agishub.com/llms.txt)
