Download OpenAPI specification:Download
The Aeronautical Data APIs, part of the Laminar Data Hub provide information on airspaces and microlights.
Cirium is transitioning Aeronautical V1 APIs to v2 APIs and will eventually retire v1. In the meantime, please see Aeronautical V1 APIs for more Aeronautical APIs.
Click the download button at the top of this document to download the OpenApi spec for this API.
Augment maps with aeronautical information - Showcase article on how to add aeronautical information to your apps
Reference - Reference data for FIRS and ICAO codes
Airports (FlightStats APIs) - Reference data for airports
Retrieves a list of airspaces for a FIR, depending on response content type chosen the format will be different:
Response includes:
For a list of possible ICAO prefixes and FIRs refer to the Reference Data APIs.
icao.prefix required | string First letter of the ICAO designator e.g. E (Case sensitive) |
fir.icao required | string ICAO code of the FIR e.g. EGTT (Case sensitive) |
user_key required | string User Key Authentication Parameter |
{- "type": "FeatureCollection",
- "features": [
- {
- "id": "116128c3-2fbd-4edc-895f-85c21ceae545",
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -3.6167,
- 56.2833
], - [
- -10,
- 57.5
], - [
- -10,
- 54.5667
], - [
- -8.25,
- 55.3333
], - [
- -4.52,
- 53.7714
], - [
- -4.3642,
- 53.9053
], - [
- -3.8256,
- 53.9603
], - [
- -3.5,
- 54.8167
], - [
- -3.6167,
- 56.2833
]
]
]
}, - "properties": {
- "name": "MANCHESTER CTA 1",
- "designator": "EGTT",
- "type": "AMA",
- "localType": "Military Operations Area",
- "controlType": "CIVIL",
- "activity": "AD_TFC",
- "classification": "A",
- "lowerLimit": {
- "uom": "FLIGHT_LEVEL",
- "value": "50",
- "reference": "AMSL"
}, - "upperLimit": {
- "uom": "FEET",
- "value": "15000",
- "reference": "AGL"
}, - "schedules": [
- {
- "day": "WORK_DAY",
- "dayTil": "AFT_WORK_DAY",
- "startDate": "12-03",
- "startTime": "11:00",
- "endDate": "28-03",
- "endTime": "16:30",
- "timeReference": "UTC"
}
]
}
}
], - "results": {
- "publishTime": "2018-07-30T11:30:31.025Z",
- "status": "ok",
- "total": 1
}
}
Retrieves full details for airspaces within the provided ISO 3166 Country Code in GeoJSON.
country.iso required | string The ISO country code for an airspace e.g. FRA (Case sensitive) |
user_key required | string User Key Authentication Parameter |
{- "type": "FeatureCollection",
- "features": [
- {
- "id": "116128c3-2fbd-4edc-895f-85c21ceae545",
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -3.6167,
- 56.2833
], - [
- -10,
- 57.5
], - [
- -10,
- 54.5667
], - [
- -8.25,
- 55.3333
], - [
- -4.52,
- 53.7714
], - [
- -4.3642,
- 53.9053
], - [
- -3.8256,
- 53.9603
], - [
- -3.5,
- 54.8167
], - [
- -3.6167,
- 56.2833
]
]
]
}, - "properties": {
- "name": "MANCHESTER CTA 1",
- "designator": "EGTT",
- "type": "AMA",
- "localType": "Military Operations Area",
- "controlType": "CIVIL",
- "activity": "AD_TFC",
- "classification": "A",
- "lowerLimit": {
- "uom": "FLIGHT_LEVEL",
- "value": "50",
- "reference": "AMSL"
}, - "upperLimit": {
- "uom": "FEET",
- "value": "15000",
- "reference": "AGL"
}, - "schedules": [
- {
- "day": "WORK_DAY",
- "dayTil": "AFT_WORK_DAY",
- "startDate": "12-03",
- "startTime": "11:00",
- "endDate": "28-03",
- "endTime": "16:30",
- "timeReference": "UTC"
}
]
}
}
], - "results": {
- "publishTime": "2018-07-30T11:30:31.025Z",
- "status": "ok",
- "total": 1
}
}
Retrieves full details for microlight aerodromes within the provided ISO 3166 Country Code in GeoJSON.
Microlight aerodromes are small, often grass runway, aerodromes that are used mostly for hobbyist flights. They may not appear in our other aerodrome APIs as they are often too minor to appear in many official databases.
Important:
country.iso required | string The ISO country code to filter aerodromes by, e.g. FRA (Case sensitive) |
user_key required | string User Key Authentication Parameter |
{- "type": "FeatureCollection",
- "features": [
- {
- "id": "116128c3-2fbd-4edc-895f-85c21ceae545",
- "type": "Feature",
- "geometry": {
- "type": "Point",
- "coordinates": [
- 150.99795471191405,
- -33.71134487915039
]
}, - "properties": {
- "designator": "EGKK",
- "name": "LONDON/GATWICK",
- "controlType": "CIVIL",
- "elevation": {
- "uom": "FEET",
- "value": "203",
- "reference": "MSL"
}
}
}
]
}