Health check
curl --request GET \
--url https://api.useblueprints.ai/healthconst options = {method: 'GET'};
fetch('https://api.useblueprints.ai/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.useblueprints.ai/health"
response = requests.get(url)
print(response.text){
"status": "ok"
}Health
Health check
Returns a lightweight liveness response. Use this for uptime checks that only need to know the API process is responding.
GET
/
health
Health check
curl --request GET \
--url https://api.useblueprints.ai/healthconst options = {method: 'GET'};
fetch('https://api.useblueprints.ai/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.useblueprints.ai/health"
response = requests.get(url)
print(response.text){
"status": "ok"
}Response
200 - application/json
API process is healthy.
Example:
"ok"