SpacexDB
  • SpaceXDB
  • Crew Dragon
    • DM-2
  • Starlink
    • Starlink 9
    • Starlink 8
    • Starlink 7
    • Starlink 6
      • API
    • Starlink 5
      • API
  • GPS
    • GPS III SV03
  • ANASIS
    • ANASIS-II
Powered by GitBook
On this page
  • Get Telemetry in JSON
  • Get Telemetry in CSV
  • Get phases in JSON
  • Get phases in CSV
  • Get Pressure in json
  • Get Pressure in CSV
  • Get temperature in JSON
  • Get temperature in CSV
  • Get graph altitude vs time
  • Get graph speed vs time
  • Get temperature vs altitude graph
  • Get pressure vs altitude graph
  • Get density vs altitude graph
  • Get Speed of sound vs Altitude graph
  • Get Speed of sound vs Time

Was this helpful?

  1. Starlink
  2. Starlink 5

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

Name
Type
Description

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

Name
Type
Description

mission-name

string

name of the mission

Time,Altitude KM,Speed KM/H
00:07:55,214,20237
Time,Altitude KM,Speed KM/H

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

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

Name
Type
Description

mission-name

string

name of the mission

PreviousStarlink 5NextGPS III SV03

Last updated 5 years ago

Was this helpful?