https://api.liteapps.co.uk/airports/searchSearch
Fuzzy search across name, city, ICAO, IATA, country, and state fields. Returns up to 20 matches by default with optional country and state filters.
Parameters
| Name | Type | Req. | Description |
|---|---|---|---|
| q | string | Yes | Search query (minimum 2 characters). |
| country | string | No | Filter by country (exact phrase match). |
| state | string | No | Filter by state (exact phrase match). |
| limit | number | No | Max results (1–100, default 20). |
{
"results": [
{
"name": "London Heathrow Airport",
"city": "London",
"icao": "EGLL",
"iata": "LHR",
"country": "United Kingdom",
"state": "England",
"location": {
"lat": 51.4706,
"lon": -0.4619
},
"_id": "egll-001",
"_score": 18.5
}
]
}