OpenAPI JSON
Free endpointGET /v1/openapi.jsonDownload the OpenAPI specification for SDK generation, validation, or tooling imports.
Try in PlaygroundExamples
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.