v1

latestOpenAPI 3.1.02026-07-26650239.3 KB
Scans

Get Scans

Search scans by various parameters.

get/v0/scans

Query parameters

flight_idstring uuid

Limit results to a specific flight ID. ID can be formatted as a full UUID, or can omit - characters, and is case insensitive

Example:3BEE061D93EC47728BAC8D71F43BB142
latitudestring

latitude of query point

longitudestring

longitude of query point

radiusstring

radius of query (m)

user_idstring
vehicle_serialstring

Limit results to a specific vehicle, by serial number

Example:Skydio2-1234
scanned_beforestring date-time

Search for Scans scanned before this timestamp. The timestamp should follow the ISO 8601 standard format.

Example:2022-05-03T03:10:52.503+00:00
scanned_sincestring date-time

Search for Scans scanned since this timestamp. The timestamp should follow the ISO 8601 standard format.

Example:2022-05-03T03:10:52.503+00:00
pre_signed_download_urlsboolean

If True, the media download urls will be pre-signed, will not require authentication, and will expire after 1 hour. If False, the urls will redirect to the file and will not expire, but will still require authentication.

per_pageinteger

Number of results to return per page

page_numberinteger

Return a specific page number from results

Response

List of scans from GET /scans endpoint

error_messagestring
skydio_error_codeinteger required
status_codeinteger required

Example response

{
  "data": {
    "scans": [
      {
        "flights": [
          {
            "landing": "2022-05-03T03:10:52.503+00:00",
            "takeoff": "2022-05-03T03:10:52.503+00:00"
          }
        ],
        "scan_time": "2022-05-03T03:10:52.503+00:00"
      }
    ]
  }
}