OpenAPI JSON
Free endpointGET /api/v1/openapi.jsonUse this endpoint for client generation or importing the API into tooling.
Try in PlaygroundStatus 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": {} }
}
}