# IANA Timezone Identifier Search

> IANA Timezone Identifier Search is a paid API for AI agents from api.agishub.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lists or searches valid IANA timezone identifiers by city, region, or country name, and resolves a city/country to its timezone(s).

## Facts

- Endpoint: POST https://api.agishub.com/paid/timezones
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/iana-timezone-identifier-search-52e0e471
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QQ4_si5I7_PA6UUNpTqhM

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 iana-timezone-identifier-search-52e0e471 -d '<json body>'
```

Example prompt: What's the correct IANA timezone identifier for Mumbai? I need the exact string to pass to a scheduling tool.

## When to prefer this

Use this endpoint when you need to discover or validate the exact IANA timezone identifier string for a city, region, or country before passing it to another tool (such as a meeting scheduler or time converter). Prefer this over manual lookup when the correct identifier is uncertain or when the user provides a colloquial city/country name rather than a formal IANA string.

## Known failure modes

- Empty result set if the query substring does not match any known IANA timezone
- Misspelled or unrecognized city/country names return no results
- Some cities may map to multiple timezones (e.g. countries spanning multiple zones), requiring the caller to disambiguate
- Payment failure (402) if no valid x402 payment is provided

## How this service works

List or search valid IANA timezone identifiers by city/region/country, and resolve a city/country name to its timezone(s). Use it to discover the exact identifier to pass to the other tools.

## Output

Returns a list of valid IANA timezone identifier strings (e.g. 'America/New_York', 'Asia/Tokyo') matching the query, optionally filtered by a case-insensitive substring. Useful for discovering the exact identifier to pass to other scheduling or time conversion tools.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string",
       "description": "Case-insensitive substring filter."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/iana-timezone-identifier-search-52e0e471/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agishub.com](https://www.zero.xyz/host/api.agishub.com/llms.txt)
