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=time_docked
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=time_docked",
  "results": [
    {
      "id": 542,
      "url": "https://lldev.thespacedevs.com/2.2.0/spacecraft/542/?format=api",
      "name": "Crew Dragon Endurance",
      "serial_number": "C210",
      "is_placeholder": false,
      "in_space": false,
      "time_in_space": "P680DT7H29M37S",
      "time_docked": "P672DT11H33M26S",
      "flights_count": 4,
      "mission_ends_count": 4,
      "status": {
        "id": 1,
        "name": "Active"
      },
      "description": "Crew Dragon spacecraft used for the Crew-3 mission to the International Space Station.",
      "spacecraft_config": {
        "id": 6,
        "url": "https://lldev.thespacedevs.com/2.2.0/config/spacecraft/6/?format=api",
        "name": "Crew Dragon 2",
        "type": {
          "id": 2,
          "name": "Capsule"
        },
        "agency": {
          "id": 121,
          "url": "https://lldev.thespacedevs.com/2.2.0/agencies/121/?format=api",
          "name": "SpaceX",
          "type": "Commercial"
        },
        "in_use": true,
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/spacex_dm-2_cre_image_20200504065311.jpeg"
      }
    },
    {
      "id": 289,
      "url": "https://lldev.thespacedevs.com/2.2.0/spacecraft/289/?format=api",
      "name": "Crew Dragon Endeavour",
      "serial_number": "C206",
      "is_placeholder": false,
      "in_space": false,
      "time_in_space": "P868DT14H14M29S",
      "time_docked": "P858DT15H30M4S",
      "flights_count": 6,
      "mission_ends_count": 6,
      "status": {
        "id": 1,
        "name": "Active"
      },
      "description": "Crew Dragon 6 is the Crew Dragon spacecraft launched on the SpaceX DM-2 demonstration mission to the ISS.",
      "spacecraft_config": {
        "id": 6,
        "url": "https://lldev.thespacedevs.com/2.2.0/config/spacecraft/6/?format=api",
        "name": "Crew Dragon 2",
        "type": {
          "id": 2,
          "name": "Capsule"
        },
        "agency": {
          "id": 121,
          "url": "https://lldev.thespacedevs.com/2.2.0/agencies/121/?format=api",
          "name": "SpaceX",
          "type": "Commercial"
        },
        "in_use": true,
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/spacex_dm-2_cre_image_20200504065311.jpeg"
      }
    },
    {
      "id": 325,
      "url": "https://lldev.thespacedevs.com/2.2.0/spacecraft/325/?format=api",
      "name": "Progress M1-5",
      "serial_number": "Progress M1-5 (No.254)",
      "is_placeholder": false,
      "in_space": false,
      "time_in_space": "P58DT1H30M42S",
      "time_docked": "P9198DT22H32M35S",
      "flights_count": 1,
      "mission_ends_count": 1,
      "status": {
        "id": 4,
        "name": "Single Use"
      },
      "description": "Progress M1-5 (Russian: Прогресс M1-5), was a Progress spacecraft used to deorbit the space station Mir.",
      "spacecraft_config": {
        "id": 36,
        "url": "https://lldev.thespacedevs.com/2.2.0/config/spacecraft/36/?format=api",
        "name": "Progress-M1",
        "type": {
          "id": 4,
          "name": "Cargo Resupply"
        },
        "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": false,
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/progress-m1_image_20231219142545.jpeg"
      }
    }
  ]
}