API Keys
/
Integration API
Access the Nautilus Scout REST API to integrate drone data into your systems
API Documentation
Base URL
https://your-domain.com
Authentication
Include your API key in the Authorization header:
Authorization: Bearer ns_live_your_api_key_here
Available Endpoints
GET/api/drones
GET/api/drones/:id
GET/api/missions
GET/api/missions/:id
GET/api/alerts
GET/api/alerts/:id
PUT/api/alerts/:id
GET/api/api-keys
Example Request
curl -X GET \
https://your-domain.com/api/drones \
-H "Authorization: Bearer ns_live_abc12345..." \
-H "Content-Type: application/json"Example Response
{
"ok": true,
"data": [
{
"_id": "abc123",
"name": "Neptune-1",
"status": "active",
"battery_level": 87,
"latitude": 34.0522,
"longitude": -118.2437
}
]
}