Loading...
Animal Detect logo

Models

Free reference endpoint
GET /api/v1/models

Use this endpoint to view current model metadata and versions for display, audits, or diagnostics.

Try in Playground

Status Codes

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

const data = await response.json()

Example Response

JSON
{
  "models": [
    {
      "id": "speciesnet",
      "name": "SpeciesNet",
      "version": "v1.0",
      "description": "Wildlife detection and classification model",
      "species_count": 2071
    }
  ]
}