Skip to content
shahar603 edited this page May 8, 2022 · 9 revisions

Webcast telemetry of rocket launches

Webcast (raw) Telemetry From a Launch

Get only the webcast telemetry of a single launch.

Supply a launch provider using the company (see Company endpoint) parameter and identify the launch using flight_number, mission_id or launch_library_2_id query parameter. You can also omit the company parameter by supplying only the launch_library_2_id query parameter.

Query format

  • http://api.launchdashboard.space/v1/raw/{company}?flight_number={flight_number}
  • http://api.launchdashboard.space/v1/raw/{company}?mission_id={mission_id}
  • http://api.launchdashboard.space/v1/raw/{company}?launch_library_2_id={launch_library_2_id}
  • http://api.launchdashboard.space/v1/raw?launch_library_id={launch_library_id}

Query Parameters

Param Sample Type Description
company spacex string The launch provider's name. Used for identification
mission_id crs-18 string Identification using the mission name (requires the company parameter)
flight_number 26 number Identification using the flight number from the launch provider's first flight (requires the company parameter
launch_library_2_id de278bee-4f84-4418-a3f3-4d5b969a363f number Identification using the id used in the launch library API
start 45,maxq number,string Start time/event of the returned telemetry
end 419,meco number,string End time/event of the returned telemetry
start_offset 5,-6 number Time to add to the start field (or the time at the event)
end_offset 5,-6 number Time to add to the end field (or the time at the event)
event meco string Return only the telemetry at the moment of the event
event_offset 3,-2 number Time to add to the event field
frame_rate `215 number Frequency of the data points in the returned telemetry
interval 2 number Time between each data points in the returned telemetry
stage 1 number Return only telemetry from the given stage

Example

Get the webcast telemetry from SpaceX's 84th flight (AMOS-17)

Query

curl -s http://api.launchdashboard.space/v1/raw/spacex?flight_number=84 | jq

Response

 [
    {
      "stage": 2,
      "telemetry": [
        { "time": 0, "velocity": 0.277, "altitude": 0 },
        { "time": 0.033, "velocity": 0.555, "altitude": 0 },
        { "time": 0.067, "velocity": 0.555, "altitude": 0},
        { "time": 0.1, "velocity": 0.555, "altitude": 0 },
        { "time": 0.133, "velocity": 0.555, "altitude": 0 },
        { "time": 0.166, "velocity": 0.833, "altitude": 0 },
        { "time": 0.2, "velocity": 0.833, "altitude": 0 },
        ...
        { "time": 1918.333, "velocity": 9518.333, "altitude": 525},
        { "time": 1918.366, "velocity": 9518.333, "altitude": 525}
      ]
    }
 ]

Fields in the raw telemetry

Name Description
time Time since launch
velocity Velocity of the rocket
altitude Altitude of the rocket