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 pressure vs altitude graph
  • Get graph altitude vs time
  • Get graph speed vs time
  • Get temperature vs altitude graph
  • Get density vs altitude

Was this helpful?

  1. Starlink
  2. Starlink 6

API

API for telemetry/phases/graphs

Get Telemetry in JSON

GET https://spacextelemetry.cf/starlink/starlink-6/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-6/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-6/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-6/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-6/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-6/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-6/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-6/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 pressure vs altitude graph

GET https://spacextelemetry.cf/starlink/starlink-6/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 graph altitude vs time

GET https://spacextelemetry.cf/starlink/starlink-6/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-6/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-6/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 density vs altitude

GET https://spacextelemetry.cfgrap-density-vs-altitude.png

This endpoint returns a graph between density and altitude

grap-density-vs-altitude.png
PreviousStarlink 6NextStarlink 5

Last updated 5 years ago

Was this helpful?