List lighting/navigation points for airport
curl --request GET \
--url https://v2.stopbars.com/airports/{icao}/pointsimport requests
url = "https://v2.stopbars.com/airports/{icao}/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports/{icao}/points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Points
List lighting/navigation points for airport
GET
/
airports
/
{icao}
/
points
List lighting/navigation points for airport
curl --request GET \
--url https://v2.stopbars.com/airports/{icao}/pointsimport requests
url = "https://v2.stopbars.com/airports/{icao}/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/airports/{icao}/points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Path Parameters
Required string length:
4Response
Points returned
Was this page helpful?
