Get global NOTAM
curl --request GET \
--url https://v2.stopbars.com/notamimport requests
url = "https://v2.stopbars.com/notam"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/notam', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));NOTAM
Get global NOTAM
GET
/
notam
Get global NOTAM
curl --request GET \
--url https://v2.stopbars.com/notamimport requests
url = "https://v2.stopbars.com/notam"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/notam', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Response
200
Current NOTAM returned
Was this page helpful?
