Get airport data
curl --request GET \
--url https://v2.stopbars.com/airportsimport requests
url = "https://v2.stopbars.com/airports"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Airports
Get airport data
Fetch airport(s) by ICAO(s) or by continent. ICAO lookups include the approved division airport’s numeric ID as id, or null when unmanaged.
GET
/
airports
Get airport data
curl --request GET \
--url https://v2.stopbars.com/airportsimport requests
url = "https://v2.stopbars.com/airports"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Was this page helpful?
