SpaceXTelemetry-Api

SpaceXTelemetry-Api is a Open Source REST API, used in https://r4yan.gitbook.io/spacexdb/ ,all the data is extracted by me using SpacexTelemetry (private tool at the moment)

logo

** http://spacextelemetry.cf domain is not working anymore use https://r4ygm.github.io/SpaceXTelemetry-Api/ if you want to fetch the api (so you basically have to replace the domain with this one on all the calls below in the page) **

Usage

curl https://spacextelemetry.cf/starlink/starlink-6/api/telemetry.json | jq

Example Response

[
  {
    "time": "00:00:01",
    "altitude": 0,
    "speed": 5
  },
  {
    "time": "00:00:03",
    "altitude": 0,
    "speed": 17
  },
  {
    "time": "00:00:06",
    "altitude": 0,
    "speed": 52
  }
  ...
]

Latest Launch Example

curl https://spacextelemetry.cf/launch/latest.json | jq

Example Latest Launch Response

{
  "mission_name": "Starlink 7",
  "telemetry": [
    {
      "time": "00:00:08",
      "altitude": 0,
      "speed": 71
    },
    {
      "time": "00:00:09",
      "altitude": 0.1,
      "speed": 85
    },
    {
      "time": "00:00:10",
      "altitude": 0.1,
      "speed": 99
    },
    ...
]
}

Content of this page

Documentation

this is the documentation of spacexdb-api to retrieve telemetries and calculations to launches

not all the launches have the same data this is because they couldn’t be calculated or they weren’t calculated yet, and not all the launches were extracted

if you want to check if data exist you could see it by going on the launch folder

Telemetries

This is the section related to the telemetry and predictions data

Query for telemetries

Query parameters for telemetries

parameter example type required description
project starlink string yes The project name (ex. starlink, crew-dragon)
mission_name starlink-6 string yes The mission name (ex. starlink-5, dm-2)
file telemetry,phase string yes The type of data you want to retrieve
format .json, .csv string yes The format of the data, can be only .csv or .json

Query for predicted calculations

Query parameters for predicted calculations

parameter example type required description
project crew-dragon string yes The project name (ex. starlink, crew-dragon)
mission_name dm-2 string yes The mission name (ex. starlink-5, dm-2)
file acceleration string yes The type of data you want to retrieve, list of available files
format .json, .csv string yes The format of the data, can be only .csv or .json

Available files for predicted calculations

Query for latest

returns telemetry and analysis of the latest analysed launch

Graphs

This is the section related to the graphs and predicted graphs

Query for graphs

Query parameters for graphs

parameter example type required description
project starlink string yes The project name (ex. starlink, crew-dragon)
mission_name starlink-5 string yes The mission name (ex. starlink-5, dm-2)
file acceleration-vs-total-time string yes The type of graph you want to retrieve, list of available files
format .png string yes The format of the image, can be only .png

Available files for graphs

List of extracted and analysed launches

Starlink

Crew Dragon

GPS

ANASIS

Apps that use this API

a list of applications that uses this api

ISA Calculations (international standard altitude) (only a few launches have this)

This is the section related to ISA Calculations that returns density,pressure,speed_of_sound,temperature this data won’t be extracted for next launches.

Query for ISA Calculations

Query parameters for ISA Calculations

parameter example type required description
project crew-dragon string yes The project name (ex. starlink, crew-dragon)
mission_name dm-2 string yes The mission name (ex. starlink-5, dm-2)
file density,pressure,speed_of_sound,temperature, string yes The type of data you want to retrieve
format .json, .csv string yes The format of the data, can be only .csv or .json