All APIs

Aircraft API

Search and retrieve aircraft type data from our Elasticsearch-backed index. Query by manufacturer, variant, model, or TCDS reference — ideal for DOA systems that need structured aircraft identification.

Endpoints

Reference

GEThttps://api.liteapps.co.uk/aircraft/get

Get

Fetch a single aircraft record by Elasticsearch document ID or TCDS reference. Provide one lookup parameter — not both.

Parameters

NameTypeReq.Description
idstringNoElasticsearch document ID.
tcds_refstringNoTCDS reference (exact match, case-insensitive).
Response
{
  "result": {
    "manufacturer": "AIRBUS S.A.S.",
    "variant": "A320-214",
    "model": "A320",
    "country": "France",
    "cs": "CS-25",
    "tcds_ref": "EASA.A.064",
    "ac_type": "A320",
    "_id": "x9y8z7w6"
  }
}
GEThttps://api.liteapps.co.uk/aircraft/manufacturers

Manufacturers

List distinct aircraft manufacturers from the index. Useful for populating filter dropdowns or validating manufacturer names.

Parameters

NameTypeReq.Description
sizenumberNoMax manufacturers to return (1–500, default 100).
Response
{
  "results": [
    "AIRBUS S.A.S.",
    "BOEING",
    "CESSNA AIRCRAFT COMPANY",
    "PIPER AIRCRAFT, INC."
  ]
}
Try It Live

API Explorer

Enter your API key and test aircraft api endpoints directly from this page.

Fuzzy search across manufacturer, variant, and model fields. Returns up to 20 matches by default, with optional filters for manufacturer, country, and certification specification.

GET https://api.liteapps.co.uk/aircraft/search

Error Responses

StatusMeaning
401Missing API key
403Invalid or disabled API key, or key not authorised for this endpoint
400Invalid query parameter (e.g. query too short, missing lat/lon)
404Record not found, or unknown endpoint
429Monthly quota exceeded
500Server error