System health check
curl --request GET \
--url https://api.hoox.sh/healthconst options = {method: 'GET'};
fetch('https://api.hoox.sh/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/health"
response = requests.get(url)
print(response.text){
"status": "ok",
"timestamp": 1779261050000,
"bindings": {
"d1": "connected",
"kv": "connected",
"queue": "active"
}
}{
"status": "ok",
"timestamp": 1779261050000,
"bindings": {
"d1": "connected",
"kv": "connected",
"queue": "active"
}
}System
System health check
Probes the gateway worker’s connectivity to critical edge infrastructure — D1 database, KV store, and Queue — and returns the health status of each binding.
GET
/
health
System health check
curl --request GET \
--url https://api.hoox.sh/healthconst options = {method: 'GET'};
fetch('https://api.hoox.sh/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/health"
response = requests.get(url)
print(response.text){
"status": "ok",
"timestamp": 1779261050000,
"bindings": {
"d1": "connected",
"kv": "connected",
"queue": "active"
}
}{
"status": "ok",
"timestamp": 1779261050000,
"bindings": {
"d1": "connected",
"kv": "connected",
"queue": "active"
}
}Last modified on June 17, 2026
⌘I