Agent worker status
curl --request GET \
--url https://api.hoox.sh/agent/statusconst options = {method: 'GET'};
fetch('https://api.hoox.sh/agent/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/agent/status"
response = requests.get(url)
print(response.text){
"success": true,
"status": "Healthy",
"config": {
"defaultProvider": "<string>",
"fallbackChain": [
"<string>"
],
"modelMap": {}
},
"activeTrailingStops": [
"<string>"
]
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}AI Agent
Agent worker status
Internal endpoint on agent-worker. Returns the current
provider manager configuration and active trailing-stop keys.
GET
/
agent
/
status
Agent worker status
curl --request GET \
--url https://api.hoox.sh/agent/statusconst options = {method: 'GET'};
fetch('https://api.hoox.sh/agent/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/agent/status"
response = requests.get(url)
print(response.text){
"success": true,
"status": "Healthy",
"config": {
"defaultProvider": "<string>",
"fallbackChain": [
"<string>"
],
"modelMap": {}
},
"activeTrailingStops": [
"<string>"
]
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}Last modified on June 17, 2026
⌘I