Wildlife Detection API Documentation

Bharat AI Vision provides a production-ready Wildlife Monitoring API designed for forest departments, conservation agencies, drone operators, and environmental intelligence platforms. The API performs real-time animal detection using RGB + thermal fusion, behavior classification, and intrusion monitoring powered by advanced computer vision models.

Wildlife Detection API

This endpoint enables real-time wildlife detection, species classification, and abnormal behavior monitoring using AI-powered vision models. It is optimized for remote forest deployments and edge-based camera trap systems.

API Endpoint

POST https://api.natureos.ai/v1/wildlife/detect

Request Body

{
  "camera_id": "forest-12",
  "image_rgb": "base64_string",
  "image_thermal": "base64_string",
  "gps": {
    "lat": 27.9878,
    "lng": 86.9250
  },
  "timestamp": "2026-02-21T18:22:00Z",
  "night_mode": true
}

Response

{
  "species": "Elephant",
  "age_group": "Adult",
  "behavior": "Grazing",
  "abnormal_behavior": false,
  "human_intrusion": false,
  "confidence": 0.94,
  "alert_level": "Low"
}