Health check
curl --request GET \
--url https://api.callaro.ai/upconst options = {method: 'GET'};
fetch('https://api.callaro.ai/up', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.callaro.ai/up"
response = requests.get(url)
print(response.text){
"error": "<string>",
"error_code": "<string>",
"request_id": "<string>",
"details": {},
"errors": [
"<string>"
]
}Health
Health check
GET
/
up
Health check
curl --request GET \
--url https://api.callaro.ai/upconst options = {method: 'GET'};
fetch('https://api.callaro.ai/up', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.callaro.ai/up"
response = requests.get(url)
print(response.text){
"error": "<string>",
"error_code": "<string>",
"request_id": "<string>",
"details": {},
"errors": [
"<string>"
]
}Response
OK
Was this page helpful?
⌘I

