Accessing Historical Telemetry
This detailed guide will show you how to retrieve flight data from our API after completing flights with your Dronetag devices.
There are two main approaches depending on what flight details you have. You can either retrieve a list of past flights, select one, and gather all available data for that specific flight, or if you only know the general time frame and location, you can pull a segment of the airspace history. Both options are supported via our REST API.
Retrieving Telemetry for a Single Flight
This method allows you to retrieve the full telemetry history for one specific flight from a single device. The API response will provide data collected by that device.
Authenticate Your API Requests
Before proceeding, ensure you have access to the necessary resources. Visit the authentication guide for instructions on how to authenticate your API requests.
List Available Flights
Retrieve a list of available flights associated with your authenticated Dronetag account. Take note of the
id
of the flight you’re interested in.Request the Flight's Telemetry Data
Use the flight’s
id
as theoperation_id
query parameter. This will give you the telemetry data for the selected flight without needing to specify time ranges or geographical areas.Our telemetry endpoints support multiple output formats. Choose your preferred format and set it in the
Accept
header of your request.You can also access additional telemetry streams for tracking the UA operator or the RID system.
For more details, check out the DUMP guide.NoteYou may notice a
/v1/flights/{id}/telemetry
endpoint. However, we recommend using the v2 endpoint, as v1 is planned for deprecation.
Retrieving Airspace History
This method allows you to pull historical airspace data for a defined location and time period.
Authenticate Your API Requests
Ensure you have access to the necessary resources. Visit the authentication guide for instructions on how to authenticate your API requests.
Choose Your Parameters
Based on the information you have, you can retrieve airspace history by either:
- Specifying a time range (
from
,to
) and geographical region (bbox
), or - Specifying a time range (
from
,to
) and UAS ID (device serial number,uas_id
).
- Specifying a time range (
Request the Airspace Telemetry Data
Select your preferred output format and set it in the
Accept
header of your request.You can also access additional telemetry streams for tracking the UA operator or the RID system.
Learn more about these telemetry types in the DUMP guide.Request Operation Details
While the previous request provides telemetry data, it does not include all the information about the flight, such as the UA's identification and type. To gather additional details, use the Operation API endpoint to retrieve more comprehensive operation information.