Find nearest airport
curl --request GET \
--url https://v2.stopbars.com/airports/nearestimport requests
url = "https://v2.stopbars.com/airports/nearest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports/nearest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Airports
Find nearest airport
Returns the nearest airport to a given latitude/longitude. Results are cached in 5NM buckets for high performance.
GET
/
airports
/
nearest
Find nearest airport
curl --request GET \
--url https://v2.stopbars.com/airports/nearestimport requests
url = "https://v2.stopbars.com/airports/nearest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports/nearest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Was this page helpful?
