Get a single point by ID
curl --request GET \
--url https://v2.stopbars.com/points/{id}import requests
url = "https://v2.stopbars.com/points/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/points/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Points
Get a single point by ID
GET
/
points
/
{id}
Get a single point by ID
curl --request GET \
--url https://v2.stopbars.com/points/{id}import requests
url = "https://v2.stopbars.com/points/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/points/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Path Parameters
Response
Point found
Was this page helpful?
