List all divisions
curl --request GET \
--url https://v2.stopbars.com/divisions \
--header 'X-Vatsim-Token: <api-key>'import requests
url = "https://v2.stopbars.com/divisions"
headers = {"X-Vatsim-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Vatsim-Token': '<api-key>'}};
fetch('https://v2.stopbars.com/divisions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Divisions
List all divisions
GET
/
divisions
List all divisions
curl --request GET \
--url https://v2.stopbars.com/divisions \
--header 'X-Vatsim-Token: <api-key>'import requests
url = "https://v2.stopbars.com/divisions"
headers = {"X-Vatsim-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Vatsim-Token': '<api-key>'}};
fetch('https://v2.stopbars.com/divisions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
VATSIM authentication token obtained via OAuth callback.
Response
Divisions returned
Was this page helpful?
