# Airport Timezone & Coordinates Finder

> Airport Timezone & Coordinates Finder is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Look up any airport by IATA or ICAO code and return its name, precise coordinates, elevation, and IANA timezone.

## Facts

- Endpoint: POST https://x402.forgemesh.io/airport-timezone-finder
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/airport-timezone-coordinates-finder-538e590b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DXXH_qkT0xcNFPlNjX9RG

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 airport-timezone-coordinates-finder-538e590b -d '<json body>'
```

Example prompt: What are the exact coordinates, elevation, and IANA timezone for the airport with IATA code NRT?

## When to prefer this

Choose this endpoint when you need authoritative airport metadata — coordinates, elevation, and IANA timezone — resolved instantly from a local database without relying on external geocoding APIs. Ideal for flight scheduling, map plotting, or timezone-aware datetime calculations keyed on airport codes. Prefer this over general geocoding when you have an IATA or ICAO code and need aviation-specific fields like elevation.

## Known failure modes

- Unknown or invalid airport code returns an error or empty result
- Malformed input (e.g. wrong code length) may result in a validation error
- Some very small or private airfields may not be in the database
- Typos in IATA/ICAO codes will not be auto-corrected

## How this service works

Look up any airport by its IATA or ICAO code and get back precise coordinates, elevation, and IANA timezone alongside the airport's name and location — useful for scheduling arrivals and departures across time zones or plotting airports on a map. Covers 29,000+ airports worldwide, resolved locally in milliseconds.

## Output

Returns the airport's full name, city, country, latitude, longitude, elevation (in meters or feet), and IANA timezone identifier (e.g. 'America/New_York'), resolved from a local database of 29,000+ airports in milliseconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "code": {
   "type": "string",
   "description": "IATA (3) or ICAO (4) code"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "city": "Houston",
  "iata": "IAH",
  "icao": "KIAH",
  "name": "George Bush Intercontinental Houston Airport",
  "country": "US",
  "timezone": "America/Chicago"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airport-timezone-coordinates-finder-538e590b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
