# ForgeMesh Airport Lookup

> ForgeMesh Airport Lookup 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).

Resolves IATA (3-letter) or ICAO (4-letter) airport codes to full airport details including name, city, country, coordinates, elevation, and timezone

## Facts

- Endpoint: POST https://x402.forgemesh.io/airport-lookup
- 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/forgemesh-airport-lookup-369761e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rEW4W-2PFFqqnsjE2VVYP

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 forgemesh-airport-lookup-369761e5 -d '<json body>'
```

Example prompt: What airport does the code LHR refer to — give me the full name, city, country, coordinates, and timezone.

## When to prefer this

Choose this endpoint when you need fast, offline-quality resolution of IATA or ICAO codes to structured airport metadata — especially when timezone accuracy, coordinates, or country context are needed for travel planning, flight scheduling, or logistics routing. Ideal for agents that process flight data and need enrichment without scraping or calling a large external API. At $0.003 per call it is cost-effective for high-volume pipelines.

## Known failure modes

- Unknown IATA/ICAO code returns a 404 (no charge)
- Malformed code (wrong length or invalid characters) returns an error
- Code that is valid but not in the 29,000+ airport database returns 404
- Network timeout or service unavailability

## How this service works

Airport lookup API: resolve any 3-letter IATA or 4-letter ICAO code to the airport's name, city, state, country, coordinates, elevation, and IANA timezone — 29,000+ airports worldwide, answered locally in milliseconds. Unknown codes return an unpaid 404. For travel planning, flight tooling, and logistics agents.

## Output

Returns the airport's full name, city, state (where applicable), country, latitude/longitude coordinates, elevation in feet, and IANA timezone string. Unknown or invalid codes return a 404 unpaid error response.

## 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/forgemesh-airport-lookup-369761e5/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)
