Loading...
Animal Detect logo

Health

Free endpoint
GET /api/v1/health

No API key required. Returns service status, API version, and current server timestamp.

Try in Playground

Status 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"
}