# Airport Lookup by ICAO Code

> Airport Lookup by ICAO Code is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-14).

Looks up an airport by its 4-letter ICAO code and returns the airport name, IATA code, country, region, and lat/lon coordinates.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-aviation-airport-by-icao
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/airport-lookup-by-icao-code-a2ffe2d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M9mej-DyJsNJL-_yTHFsk

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-lookup-by-icao-code-a2ffe2d1 -d '<json body>'
```

Example prompt: What airport is EGLL? I need its full name, IATA code, country, region, and exact coordinates.

## When to prefer this

Use this endpoint when you have a 4-letter ICAO code and need structured airport metadata including geographic coordinates and IATA mapping. Prefer over manual lookups or general web searches when you need machine-readable, structured data for aviation workflows, route planning, or data enrichment pipelines.

## Known failure modes

- Invalid or unknown ICAO code returns an error or empty result
- Malformed ICAO (not 4 letters) may cause a validation error
- Network or upstream hexdb.io downtime could cause failures
- Payment failure (x402) if USDC not available or payment not authorized

## How this service works

Look up an airport by its 4-letter ICAO code and get the airport name, IATA code, country, region, and latitude/longitude. Free hexdb.io airport database, no key. Pass an ICAO like EGLL.

## Output

Returns a JSON object with the airport's full name, IATA code (3-letter), country, region, and geographic coordinates (latitude and longitude), sourced from the hexdb.io free airport database.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airport-lookup-by-icao-code-a2ffe2d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
