Download OpenAPI specification:Download
The Live API provides data about Drone Defence sensors, and detections from them in realtime
Query object that includes either an area or a geohash (but not both), and an optional startTime and endTime in UNIX milliseconds
| geohash | string The geohash from which detections will be returned by the query. Must be to at least 4 characters of precision; if more are supplied, it will be trimmed |
object The area from which detections will be returned by the query. Currently, only GeoJSON polygons are supported with 1 linear ring | |
| startTime | integer The start of the time period from which detections will be returned by the query in UNIX milliseconds |
| endTime | integer The end of the time period from which detections will be returned by the query in UNIX milliseconds |
{- "geohash": "string",
- "area": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 0,
- 0
]
]
]
}, - "startTime": 0,
- "endTime": 0
}{- "StartTime": 0,
- "EndTime": 0,
- "Geohashes": [
- "string"
], - "Detections": [
- {
- "UUID": "string",
- "DetectedAt": 0,
- "TrackIDs": [
- "string"
], - "Position": { }
}
]
}| sensorID required | string The ID of the sensor for which the data will be returned |
{- "Sensors": [
- {
- "SensorID": "string",
- "LastGeoposition": {
- "SentAt": 0,
- "Position": { }
}, - "LastHeartbeat": {
- "SentAt": 0
}
}
]
}