Loading...
Animal Detect logo

API endpoint update

New integrations should use . Existing URLs will keep working for the next few months while teams migrate.

Models

Free reference endpoint
GET /v1/models

List current model versions and supported species counts.

Try in Playground

Examples

Node.js / Express
const response = await fetch('https://api.animaldetect.com/v1/models', {
  headers: {
    Authorization: 'Bearer ' + process.env.ANIMAL_DETECT_API_KEY,
  },
})

const data = await response.json()
Example Response
{
  "models": [
    {
      "id": "speciesnet",
      "name": "SpeciesNet",
      "version": "v1.0",
      "description": "Wildlife detection and classification model",
      "species_count": 2071
    }
  ]
}

Status Codes

200Model list returned.
401Invalid, missing, or revoked API key.
429Rate limit exceeded.