API
API for Starlink 5
Get Telemetry in JSON
GET
https://spacextelemetry.cf/starlink/starlink-5/api/telemetry.json
This endpoint allows you to get altitude and speed at a certain time in a JSON format, this shows all the telemetry captured from the webcast
Path Parameters
mission-name
string
name of the mission
{
"Time": "00:07:55",
"Altitude KM": 214,
"Speed KM/H": 20237
}
Get Telemetry in CSV
GET
https://spacextelemetry.cf/starlink/starlink-5/api/telemetry.csv
This endpoint allows you to get altitude and speed at a certain time in a CSV format, this shows all the captured telemetry from the webcast
Path Parameters
mission-name
string
name of the mission
Time,Altitude KM,Speed KM/H
00:07:55,214,20237
Get phases in JSON
GET
https://spacextelemetry.cf/starlink/starlink-5/api/phase.json
This endpoint allows you to get the phases in a certain time in a JSON format, this shows all the captured phases from the webcast
Path Parameters
mission-name
string
name of the mission
{
"TIME": "00:02:39",
"PHASE": " STAGE SEPARATION STAGE 1 HAS SEPARATED FROM STAGE 2 "
}
Get phases in CSV
GET
https://spacextelemetry.cf/starlink/starlink-5/api/phase.csv
This endpoint allows you to get the phases of the launch in a certain time in a CSV format, this shows all the captured phases in the webcast
Path Parameters
mission-name
string
name of the mission
TIME,PHASE
00:02:42, STAGE SEPARATION STAGE 1 HAS SEPARATED FROM STAGE 2
Get Pressure in json
GET
https://spacextelemetry.cf/starlink/starlink-5/api/pressure.json
This endpoint allows you to retrieve the pressure calculated using the altitude it's returned in pascal
Path Parameters
mission-name
string
{
"time": "00:12:51",
"pressure": 98709.392175432,
"altitude": 220
},
Get Pressure in CSV
GET
https://spacextelemetry.cf/starlink/starlink-5/api/pressure.csv
This enpoint allows you to get the pressure calculated at a certain altitude, it's returned in pascal in a CSV format
Path Parameters
mission-name
string
time,pressure,altitude
00:00:56,101242.12148073102,6.9
Get temperature in JSON
GET
https://spacextelemetry.cf/starlink/starlink-5/api/temperature.json
This endpoint returns to you the temperatures estimated in kelvin in a JSON format
Path Parameters
mission-name
string
name of the mission
{
"time": "00:01:55",
"temperature": 287.9368,
"altitude": 32.8
},
Get temperature in CSV
GET
https://spacextelemetry.cf/starlink/starlink-5/api/temperature.csv
This endpoint returns a list of estimated temperatures in kelvin of the launch
Path Parameters
mission-name
string
name of the mission
time,temperature,altitude
00:02:25,287.7808,56.8
Get graph altitude vs time
GET
https://spacextelemetry.cf/starlink/starlink-5/api/graphs/graptime-vs-altitude.png
This endpoint allows you to retrieve a graph showing a comparision of altitude and time
Path Parameters
mission-name
string
name of the mission
Get graph speed vs time
GET
https://spacextelemetry.cf/starlink/starlink-5/api/graphs/grap-speed-time1.png
This endpoint allows you to retrieve a graph showing a comparision of speed and time
Path Parameters
mission-name
string
the name of the mission
grap-speed-time1.png
Get temperature vs altitude graph
GET
https://spacextelemetry.cf/starlink/starlink-5/api/graphs/grap-temperature-vs-altitude.png
This endpoint returns a graph showing temperature and altitude
Path Parameters
mission-name
string
name of the mission
Get pressure vs altitude graph
GET
https://spacextelemetry.cf/starlink/starlink-5/api/graphs/grap-pressure-vs-altitude.png
This endpoint returns you a graph made using pressure and altitude
Path Parameters
mission-name
string
name of the mission
Get density vs altitude graph
GET
https://spacextelemetry.cf/starlink/starlink-5/api/graphs/grap-density-vs-altitude.png
This endpoint returns a graph between density and altitude
Path Parameters
mission-name
string
name of the mission
grap-density-vs-altitude.png
Get Speed of sound vs Altitude graph
GET
https://spacextelemetry.cf/starlink/starlink-5/api/graphs/graph-temperature-vs-altitude.png
This endpoint returns a graph comparing Speed of sound and Altitude in a .png format
Path Parameters
mission-name
string
name of the mission
Get Speed of sound vs Time
GET
https://spacextelemetry.cf/starlink/starlink-5/api/graphs/raph-speed-of-sound-vs-total-time.png
This endpoint returns a graph comparing speed of sound and Time in seconds
Path Parameters
mission-name
string
name of the mission
Last updated
Was this helpful?