SpaceX StarlinkSat

A Starlink satellite with Space-Track OMM orbit data. Derived from the r-spacex/SpaceX-API mongoose model.

SpaceLaunchSatellitesStarlinkFalcon 9Falcon HeavyDragonRocketsOpen SourceCommunityRESTGraphQLOpen Data

Properties

Name Type Description
id string
version string
launch string Launch UUID.
longitude number
latitude number
height_km number
velocity_kms number
spaceTrack object Raw Space-Track Orbit Mean Elements Message fields.
View JSON Schema on GitHub

JSON Schema

spacex-starlink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/spacex/json-schema/spacex-starlink-schema.json",
  "title": "SpaceX StarlinkSat",
  "description": "A Starlink satellite with Space-Track OMM orbit data. Derived from the r-spacex/SpaceX-API mongoose model.",
  "x-schema-source": "documentation",
  "x-source-url": "https://github.com/r-spacex/SpaceX-API/tree/master/docs",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "version": {
      "type": "string",
      "nullable": true
    },
    "launch": {
      "type": "string",
      "nullable": true,
      "description": "Launch UUID."
    },
    "longitude": {
      "type": "number",
      "nullable": true
    },
    "latitude": {
      "type": "number",
      "nullable": true
    },
    "height_km": {
      "type": "number",
      "nullable": true
    },
    "velocity_kms": {
      "type": "number",
      "nullable": true
    },
    "spaceTrack": {
      "type": "object",
      "description": "Raw Space-Track Orbit Mean Elements Message fields.",
      "additionalProperties": true
    }
  }
}