Health
Free endpointGET /api/v1/healthNo API key required. Returns service status, API version, and current server timestamp.
Try in PlaygroundStatus Codes
200API is healthy.
Node.js / Express
const response = await fetch('https://www.animaldetect.com/api/v1/health')
const data = await response.json()Example Response
JSON
{
"status": "ok",
"version": "v1.0",
"timestamp": "2026-02-10T11:03:22.194Z"
}