Health check
curl --request GET \
--url https://api.usenexio.com/healthimport requests
url = "https://api.usenexio.com/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.usenexio.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"commit": "0f3c1a9e7b2d4c6a8e1f3b5d7a9c2e4f6b8d0a1c"
}Platform
Health
Check that the Nexio API is up before you send traffic, with no key.
GET
/
health
Health check
curl --request GET \
--url https://api.usenexio.com/healthimport requests
url = "https://api.usenexio.com/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.usenexio.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"commit": "0f3c1a9e7b2d4c6a8e1f3b5d7a9c2e4f6b8d0a1c"
}Last modified on September 25, 2026