Loading...
Animal Detect logo

API endpoint update

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

OpenAPI JSON

Free endpoint
GET /v1/openapi.json

Download the OpenAPI specification for SDK generation, validation, or tooling imports.

Try in Playground

Examples

Node.js / Express
const response = await fetch('https://api.animaldetect.com/v1/openapi.json')
const spec = await response.json()
Example Response
{
  "openapi": "3.0.3",
  "info": {
    "title": "Animal Detect API",
    "version": "v1.0"
  },
  "paths": {
    "/detect": { "post": {} }
  }
}

Status Codes

200Specification JSON returned.