SpaceX (Community API) · JSON Structure

Spacex Core Structure

A serialized Falcon first-stage core. Derived from the r-spacex/SpaceX-API mongoose model.

Type: object Properties: 11 Required: 2
SpaceLaunchSatellitesStarlinkFalcon 9Falcon HeavyDragonRocketsOpen SourceCommunityRESTGraphQLOpen Data

SpaceX Core is a JSON Structure definition published by SpaceX (Community API), describing 11 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id serial block status reuse_count rtls_attempts rtls_landings asds_attempts asds_landings last_update launches

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/spacex/refs/heads/main/json-structure/spacex-core-structure.json",
  "name": "SpaceX Core",
  "description": "A serialized Falcon first-stage core. 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"
    },
    "serial": {
      "type": "string",
      "description": "Booster serial (e.g. B1062)."
    },
    "block": {
      "type": "int32",
      "nullable": true
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "unknown",
        "expended",
        "lost",
        "retired"
      ]
    },
    "reuse_count": {
      "type": "int32",
      "default": 0
    },
    "rtls_attempts": {
      "type": "int32",
      "default": 0
    },
    "rtls_landings": {
      "type": "int32",
      "default": 0
    },
    "asds_attempts": {
      "type": "int32",
      "default": 0
    },
    "asds_landings": {
      "type": "int32",
      "default": 0
    },
    "last_update": {
      "type": "string",
      "nullable": true
    },
    "launches": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "serial",
    "status"
  ]
}