System/service health check
curl --request GET \
--url https://v2.stopbars.com/healthimport requests
url = "https://v2.stopbars.com/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));System
System/service health check
GET
/
health
System/service health check
curl --request GET \
--url https://v2.stopbars.com/healthimport requests
url = "https://v2.stopbars.com/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Query Parameters
Response
All services healthy
Was this page helpful?
