AI provider health
curl --request GET \
--url https://api.hoox.sh/agent/healthconst options = {method: 'GET'};
fetch('https://api.hoox.sh/agent/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/agent/health"
response = requests.get(url)
print(response.text){
"success": true,
"providers": {}
}AI Agent
AI provider health
Returns the health status of all configured AI providers. This endpoint is called via service binding and is not externally authenticated.
GET
/
agent
/
health
AI provider health
curl --request GET \
--url https://api.hoox.sh/agent/healthconst options = {method: 'GET'};
fetch('https://api.hoox.sh/agent/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/agent/health"
response = requests.get(url)
print(response.text){
"success": true,
"providers": {}
}Last modified on June 17, 2026
⌘I