SpaceX Roadster

Tesla Roadster ephemeris (single document). Derived from the r-spacex/SpaceX-API mongoose model.

SpaceLaunchSatellitesStarlinkFalcon 9Falcon HeavyDragonRocketsOpen SourceCommunityRESTGraphQLOpen Data

Properties

Name Type Description
id string
name string
launch_date_utc string
launch_date_unix integer
launch_mass_kg number
launch_mass_lbs number
norad_id integer
epoch_jd number
orbit_type string
apoapsis_au number
periapsis_au number
semi_major_axis_au number
eccentricity number
inclination number
longitude number
periapsis_arg number
period_days number
speed_kph number
speed_mph number
earth_distance_km number
earth_distance_mi number
mars_distance_km number
mars_distance_mi number
flickr_images array
wikipedia string
video string
details string
View JSON Schema on GitHub

JSON Schema

spacex-roadster-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/spacex/json-schema/spacex-roadster-schema.json",
  "title": "SpaceX Roadster",
  "description": "Tesla Roadster ephemeris (single document). 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"
    },
    "name": {
      "type": "string"
    },
    "launch_date_utc": {
      "type": "string",
      "format": "date-time"
    },
    "launch_date_unix": {
      "type": "integer"
    },
    "launch_mass_kg": {
      "type": "number"
    },
    "launch_mass_lbs": {
      "type": "number"
    },
    "norad_id": {
      "type": "integer"
    },
    "epoch_jd": {
      "type": "number"
    },
    "orbit_type": {
      "type": "string"
    },
    "apoapsis_au": {
      "type": "number"
    },
    "periapsis_au": {
      "type": "number"
    },
    "semi_major_axis_au": {
      "type": "number"
    },
    "eccentricity": {
      "type": "number"
    },
    "inclination": {
      "type": "number"
    },
    "longitude": {
      "type": "number"
    },
    "periapsis_arg": {
      "type": "number"
    },
    "period_days": {
      "type": "number"
    },
    "speed_kph": {
      "type": "number"
    },
    "speed_mph": {
      "type": "number"
    },
    "earth_distance_km": {
      "type": "number"
    },
    "earth_distance_mi": {
      "type": "number"
    },
    "mars_distance_km": {
      "type": "number"
    },
    "mars_distance_mi": {
      "type": "number"
    },
    "flickr_images": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      }
    },
    "wikipedia": {
      "type": "string",
      "format": "uri"
    },
    "video": {
      "type": "string",
      "format": "uri"
    },
    "details": {
      "type": "string"
    }
  }
}