Loading...
Animal Detect logo

API endpoint update

New integrations should use https://api.animaldetect.com/v1. Existing https://www.animaldetect.com/api/v1 URLs will keep working for the next few months while teams migrate.

Health

Free endpoint
GET /v1/health

Use this endpoint to quickly confirm the API is reachable and healthy before running other requests.

Try in Playground

Status Codes

200API is healthy.
Node.js / Express
const response = await fetch('https://api.animaldetect.com/v1/health')
const data = await response.json()

Example Response

JSON
{
  "status": "ok",
  "version": "v1.0",
  "timestamp": "2026-02-10T11:03:22.194Z"
}