v1

latestOpenAPI 3.1.02026-07-26650239.3 KB
Media

Get Media Files

Search media files by various parameters.

get/v0/media_files

Query parameters

vehicle_serialstring

Limit results to a specific vehicle, by serial number

Example:Skydio2-1234
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
kindstring[]

Filter by media type: vehicleImage - Images captured in flight vehicleImageDng - DNG images captured in flight vehicleVideoPreview - LRV Recording of the full flight vehicleVideoRaw - Video recording of the flight when the vehicle was in “video mode”. (Not recorded when the vehicle is in “photo mode”). videoTelemetryCsv - CSV file with telemetry aligned to the vehicleVideoRaw

captured_beforestring date-time

Search for Media Files captured before this timestamp. The timestamp should follow the ISO 8601 standard format.

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

Search for Media Files captured since this timestamp. The timestamp should follow the ISO 8601 standard format.

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

Search for Media Files uploaded before this timestamp. The timestamp should follow the ISO 8601 standard format.

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

Search for Media Files uploaded 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.

mission_template_uuidstring uuid

Limit results to a specific mission template ID (UUID)

mission_waypoint_namestring
per_pageinteger

Number of results to return per page

page_numberinteger

Return a specific page number from results

Response

List of media files returned from GET /media_files endpoint

error_messagestring
skydio_error_codeinteger required
status_codeinteger required

Example response

{
  "data": {
    "files": [
      {
        "captured_time": "2022-05-03T03:10:52.503+00:00",
        "uploaded_time": "2022-05-03T03:10:52.503+00:00"
      }
    ]
  }
}