Skip to main content

Autocomplete

POST

/api/v1/generic-api-service/flight/autocomplete

The autocomplete endpoint takes an airport code or free-text query and returns matching airport details. It is typically used to power search-box autocomplete, resolving a user's input into structured airport information.

curl --location 'https://test-api.etscore.com/api/v1/generic-api-service/flight/autocomplete' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
"query": "IST"
}'