Get multiple points by IDs
curl --request GET \
--url https://v2.stopbars.com/pointsimport requests
url = "https://v2.stopbars.com/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Points
Get multiple points by IDs
GET
/
points
Get multiple points by IDs
curl --request GET \
--url https://v2.stopbars.com/pointsimport requests
url = "https://v2.stopbars.com/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Query Parameters
Comma-separated list of point IDs (max 100)
Response
Points returned
Was this page helpful?
