Drone Defence Live API (1.0.0)

Download OpenAPI specification:Download

The Live API provides data about Drone Defence sensors, and detections from them in realtime

Detections

Get live detection data

Query for live detections data

Authorizations:
apiKeyHeader
Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "geohash": "string",
  • "area": {
    },
  • "startTime": 0,
  • "endTime": 0
}

Response samples

Content type
application/json
{
  • "StartTime": 0,
  • "EndTime": 0,
  • "Geohashes": [
    ],
  • "Detections": [
    ]
}

Sensors

Get live sensor data

Query for live sensor data

Authorizations:
apiKeyHeader
query Parameters
sensorID
required
string

The ID of the sensor for which the data will be returned

Responses

Response samples

Content type
application/json
{
  • "Sensors": [
    ]
}