Wildlife API

Thermal + RGB fusion wildlife detection with behavior analysis and intrusion monitoring.

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"
}

Code Example

curl -X POST "https://api.natureos.ai/v1/wildlife/detect" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "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
}'