Check API health
curl --request GET \
--url https://api.webless.ai/api/v1/healthconst options = {method: 'GET'};
fetch('https://api.webless.ai/api/v1/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.webless.ai/api/v1/health"
response = requests.get(url)
print(response.text){
"status": "healthy"
}Search API
Health
GET
/
api
/
v1
/
health
Check API health
curl --request GET \
--url https://api.webless.ai/api/v1/healthconst options = {method: 'GET'};
fetch('https://api.webless.ai/api/v1/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.webless.ai/api/v1/health"
response = requests.get(url)
print(response.text){
"status": "healthy"
}Response
200 - application/json
Healthy response
Example:
"healthy"
Was this page helpful?