---
title: "Get Telemetry for Flight"
method: GET
path: "/v1/flight/{flight_id}/telemetry"
tags: ["Telemetry"]
---

# Get Telemetry for Flight

`GET /v1/flight/{flight_id}/telemetry`

Fetch telemetry from a single flight by its flight id.

## Path parameters

- `flight_id` string, required

## Response `200`

Flight telemetry and metadata for a single flight

- object
  - `data` object, required — Flight telemetry and metadata for a single flight
    - `flight` object
      - `attachments` object[] — (Beta) List of attachments present on the vehicle during this flight.
        - `attachment_serial` string
        - `attachment_type` 'SPOTLIGHT' | 'NIGHTSENSE' | 'SPEAKER_AND_MIC' | 'DROPPER' — Type of attachment on the vehicle
        - `mount_point` 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' — Location of the attachment on the vehicle
      - `battery_serial` string
      - `flight_id` string, required
      - `has_telemetry` boolean — True if telemetry has been uploaded for this flight.
      - `landing` string, date-time
      - `markers` object[] — Markers associated with this flight, including incident/CAD IDs.
        - `incident_id` string
        - `uuid` string
      - `sensor_package` object — (Beta) The sensor package used during this flight.
        - `sensor_package_serial` string
        - `sensor_package_type` 'V100-L' | 'VT300-L' | 'VT300-Z'
      - `takeoff` string, date-time
      - `takeoff_latitude` number — Populated if telemetry has been uploaded for this flight.
      - `takeoff_longitude` number — Populated if telemetry has been uploaded for this flight.
      - `user_email` string
      - `vehicle_serial` string, required
    - `flight_telemetry` object, required
      - `aligned_telemetry` object[], required
        - `battery_percentage` number — The percentage of battery remaining expressed as a float from 0-1
        - `gps_altitude` number — GPS-based absolute altitude above sea level [meters]
        - `gps_horizontal_accuracy` number — GPS position accuracy estimate in XY [meters]
        - `gps_latitude` number — GPS-based global latitude [degrees]
        - `gps_longitude` number — GPS-based global longitude [degrees]
        - `gps_num_satellites_used` integer — Number of satellites used by the GPS receiver
        - `gps_speed_accuracy` number — GPS velocity accuracy estimate [meters / second]
        - `gps_velocity` number[] — GPS-based velocity in the world frame (north-east-down) [meters / second]
        - `gps_vertical_accuracy` number — GPS position accuracy estimate in Z [meters]
        - `height_above_takeoff` number — Height in meters above the takeoff point. Estimated from visual and baro systems
        - `hybrid_altitude` number — Vision + Baro estimated absolute altitude above sea level [meters]
        - `hybrid_camera_orientation_rpy_ned` number[] — Vision + GPS based camera orientation in the world frame (roll, pitch, yaw) [degrees]
        - `site_camera_orientation_quat_enu` number[] — Orientation of the drone camera in the Site frame (quaternion [x, y, z, w])
        - `site_camera_orientation_rpy_enu` number[] — Orientation of the drone camera in the Site frame (roll, pitch, yaw) [degrees]
        - `site_camera_position_enu` number[] — Position of the drone camera in the Site frame (east-north-up) [meters]
        - `site_orientation_quat_enu` number[] — Orientation of the drone in the Site frame (quaternion [x, y, z, w])
        - `site_orientation_rpy_enu` number[] — Orientation of the drone in the Site frame (roll, pitch, yaw) [degrees]
        - `site_position_enu` number[] — Position of the drone in the Site frame (east-north-up) [meters]
        - `timestamp` string, date-time, required — Vehicle epoch time [microseconds]
  - `error_message` string
  - `meta` object, required
    - `time` number
  - `skydio_error_code` integer, required
  - `status_code` integer, required

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/skydio/apis/skydio-cloud-api.md) · [All operations](https://skmtc.net/skydio/apis/skydio-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skydio/skydio-cloud-api/revisions/0f746b116483/schema)
