ConservaCam Data Hub

Access for Researchers and Partners

We provide an API to access the data collected and model predictions for wildlife conservation studies and ecosystem monitoring.

View API Documentation

API Example

Simple RESTful API calls for data access

# Get species detections for a specific area
curl -X GET \
"https://api.conservacam.com/v1/species?area=nairobi-national-park" \
-H "Authorization: Bearer YOUR_API_KEY"
# Response:
{
"data": [
{
"species": "Panthera leo",
"common_name": "Lion",
"detections": 15,
"last_seen": "2025-11-08T14:30:00Z"
}
]
}