Loading...
Animal Detect logo

OpenAPI JSON

Free endpoint
GET /api/v1/openapi.json

Use this endpoint for client generation or importing the API into tooling.

Try in Playground

Status Codes

200Specification JSON returned.
Node.js / Express
const response = await fetch('https://www.animaldetect.com/api/v1/openapi.json')
const spec = await response.json()

Example Response

JSON
{
  "openapi": "3.0.3",
  "info": {
    "title": "Animal Detect API",
    "version": "v1.0"
  },
  "paths": {
    "/detect": { "post": {} }
  }
}