API endpoint that allows Spacecrafts to be viewed. A Spacecraft is a physically manufactured instance of a Spacecraft Configuration

GET: Return a list of all the existing spacecraft.

FILTERS: Parameters - 'name', 'status', 'spacecraft_config', 'is_placeholder', 'in_space' Example - /2.2.0/spacecraft/?in_space=true

SEARCH EXAMPLE: Example - /2.2.0/spacecraft/?search=Dragon

ORDERING: Fields - 'id', 'time_in_space', 'time_docked', 'flights_count', 'mission_ends_count' Example - /2.2.0/spacecraft/?ordering=id

GET /2.2.0/spacecraft/?format=api&offset=600&ordering=-mission_ends_count
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "count": 603,
  "next": null,
  "previous": "https://lldev.thespacedevs.com/2.2.0/spacecraft/?format=api&limit=10&offset=590&ordering=-mission_ends_count",
  "results": [
    {
      "id": 548,
      "url": "https://lldev.thespacedevs.com/2.2.0/spacecraft/548/?format=api",
      "name": "Gaganyaan G2",
      "serial_number": null,
      "is_placeholder": false,
      "in_space": false,
      "time_in_space": "P0D",
      "time_docked": "P0D",
      "flights_count": 0,
      "mission_ends_count": 0,
      "status": {
        "id": 4,
        "name": "Single Use"
      },
      "description": "Second operational Gaganyaan capsule.",
      "spacecraft_config": {
        "id": 29,
        "url": "https://lldev.thespacedevs.com/2.2.0/config/spacecraft/29/?format=api",
        "name": "Gaganyaan",
        "type": {
          "id": 2,
          "name": "Capsule"
        },
        "agency": {
          "id": 1031,
          "url": "https://lldev.thespacedevs.com/2.2.0/agencies/1031/?format=api",
          "name": "Hindustan Aeronautics Limited",
          "type": "Government"
        },
        "in_use": true,
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/gaganyaan_image_20231021132705.jpeg"
      }
    },
    {
      "id": 611,
      "url": "https://lldev.thespacedevs.com/2.2.0/spacecraft/611/?format=api",
      "name": "Tianzhou-9",
      "serial_number": "9",
      "is_placeholder": false,
      "in_space": true,
      "time_in_space": "P264DT6H35M10S",
      "time_docked": "P264DT3H17M33S",
      "flights_count": 1,
      "mission_ends_count": 0,
      "status": {
        "id": 4,
        "name": "Single Use"
      },
      "description": "Ninth operational Tianzhou spacecraft.",
      "spacecraft_config": {
        "id": 25,
        "url": "https://lldev.thespacedevs.com/2.2.0/config/spacecraft/25/?format=api",
        "name": "Tianzhou",
        "type": {
          "id": 4,
          "name": "Cargo Resupply"
        },
        "agency": {
          "id": 88,
          "url": "https://lldev.thespacedevs.com/2.2.0/agencies/88/?format=api",
          "name": "China Aerospace Science and Technology Corporation",
          "type": "Government"
        },
        "in_use": true,
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/tianzhou_image_20210513100807.jpg"
      }
    },
    {
      "id": 616,
      "url": "https://lldev.thespacedevs.com/2.2.0/spacecraft/616/?format=api",
      "name": "Soyuz MS-29",
      "serial_number": "11F732 #760",
      "is_placeholder": false,
      "in_space": false,
      "time_in_space": "P0D",
      "time_docked": "P0D",
      "flights_count": 0,
      "mission_ends_count": 0,
      "status": {
        "id": 4,
        "name": "Single Use"
      },
      "description": "Soyuz capsule for the MS-29 mission to the ISS.",
      "spacecraft_config": {
        "id": 38,
        "url": "https://lldev.thespacedevs.com/2.2.0/config/spacecraft/38/?format=api",
        "name": "Soyuz MS",
        "type": {
          "id": 2,
          "name": "Capsule"
        },
        "agency": {
          "id": 63,
          "url": "https://lldev.thespacedevs.com/2.2.0/agencies/63/?format=api",
          "name": "Russian Federal Space Agency (ROSCOSMOS)",
          "type": "Government"
        },
        "in_use": true,
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/soyuz_ms_in_orb_image_20240313130407.jpeg"
      }
    }
  ]
}