Health
Free endpointGET /v1/healthConfirm the API is reachable before running other requests.
Try in PlaygroundExamples
Node.js / Express
const response = await fetch('https://api.animaldetect.com/v1/health')
const data = await response.json()Example Response
{
"status": "ok",
"version": "v1.0",
"timestamp": "2026-02-10T11:03:22.194Z"
}Status Codes
200API is healthy.