Get all stopbar-to-lead-on links for an airport
curl --request GET \
--url https://v2.stopbars.com/airports/{icao}/linksimport requests
url = "https://v2.stopbars.com/airports/{icao}/links"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports/{icao}/links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Points
Get all stopbar-to-lead-on links for an airport
GET
/
airports
/
{icao}
/
links
Get all stopbar-to-lead-on links for an airport
curl --request GET \
--url https://v2.stopbars.com/airports/{icao}/linksimport requests
url = "https://v2.stopbars.com/airports/{icao}/links"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports/{icao}/links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Path Parameters
Response
200
Map of stopbar IDs to linked lead-on IDs
Was this page helpful?
