---
title: "List airport IATA codes"
method: GET
path: "/data/flights/airports/iatas"
tags: ["Airports"]
---

# List airport IATA codes

`GET /data/flights/airports/iatas`

## Overview

Retrieve a lightweight list of airport IATA codes with names for autocomplete and lookup purposes.

## When to Use

- **Autocomplete dropdowns** - Populate airport search inputs with a full list of codes and names
- **Client-side filtering** - Download the full list once and filter locally
- **Code validation** - Build a lookup table of valid airport codes

## What You Get

- **IATA codes** for all airports in the database
- **Airport names** paired with each code
- **Filtered results** when the `q` query parameter is provided

## Quick Start

Call with no parameters to get all airport codes and names. Use the `q` parameter to filter by name or code.

## Query parameters

- `q` string, required

## Response `200`

Successful response

- object
  - `data` object[] — List of airport IATA result sets
    - `airports` AirportIATA[] — List of airport IATA codes and names
      - `iata` string — 3-letter IATA airport code
      - `name` string — Airport name

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `500` — Server error

---

[API](https://skmtc.net/liteapi/apis/api-search.md) · [All operations](https://skmtc.net/liteapi/apis/api-search/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/liteapi/api-search/versions/315ba2a4dcf4/schema)
