Healthcheck
curl --request GET \
--url https://api.example.com/api/v2/healthcheckimport requests
url = "https://api.example.com/api/v2/healthcheck"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v2/healthcheck', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));false"<string>"{
"error": "<string>",
"message": "<string>"
}System
Healthcheck
Returns the health status of the service.
GET
/
api
/
v2
/
healthcheck
Healthcheck
curl --request GET \
--url https://api.example.com/api/v2/healthcheckimport requests
url = "https://api.example.com/api/v2/healthcheck"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v2/healthcheck', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));false"<string>"{
"error": "<string>",
"message": "<string>"
}Response
Success
The response is of type string.
Was this page helpful?
⌘I