Loading...
Animal Detect logo

Usage

Free endpoint
GET /api/v1/usage

Useful for dashboards and internal automation that needs usage telemetry.

Try in Playground

Status Codes

200Usage payload returned.
401Invalid, missing, or revoked API key.
429Rate limit exceeded.
Node.js / Express
const response = await fetch('https://www.animaldetect.com/api/v1/usage', {
  headers: {
    Authorization: 'Bearer ' + process.env.ANIMAL_DETECT_API_KEY,
  },
})

const data = await response.json()

Example Response

JSON
{
  "quota": {
    "used_gb": 1.34,
    "max_gb": 5,
    "percentage": 27
  },
  "requests": {
    "today": 84,
    "this_month": 1240
  },
  "rate_limit": {
    "remaining": 96,
    "reset_at": "2026-02-10T11:04:00.000Z"
  },
  "user_id": "2b01e3ce-a8be-4ea8-9cd8-0c47859c6c87"
}