API endpoint that allows Expeditions to be viewed.

GET: Return a list of all the existing expeditions.

MODE: Normal and Detailed /2.0.0/expedition/?mode=detailed

FILTERS: Fields - 'name', 'crew__astronaut', 'crew__astronaut__agency', 'space_station'

Get all Expeditions with the Space Station ID of 1. Example - /2.0.0/expedition/?space_station=1&mode=detailed

Search for all Expeditions with the Astronaut named John Example - /2.0.0/expedition/?search=John

ORDERING: Fields - 'id', 'start', 'end' Order reverse via Start date. Example - /2.0.0/astronaut/?order=-start

GET /2.0.0/expedition/2/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "id": 2,
  "url": "https://lldev.thespacedevs.com/2.0.0/expedition/2/?format=api",
  "name": "Skylab II",
  "start": "1973-05-25T13:00:00Z",
  "end": "1973-06-22T13:49:48Z",
  "spacestation": {
    "id": 6,
    "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/6/?format=api",
    "name": "Skylab",
    "status": {
      "id": 2,
      "name": "De-Orbited"
    },
    "founded": "1973-05-14",
    "description": "Skylab was a United States space station launched and operated by NASA, and occupied for about 24 weeks between May 1973 and February 1974 – the only space station the U.S. has operated exclusively. In 1979 it fell back to Earth amid huge worldwide media attention. Skylab included a workshop, a solar observatory, and other systems necessary for crew survival and scientific experiments. It was launched unmanned by a modified Saturn V rocket, with a weight of 170,000 pounds (77,000 kg). Lifting Skylab into low earth orbit was the final mission and launch of a Saturn V rocket (famous for carrying the manned Moon landing missions). Three missions delivered three-astronaut crews in the Apollo command and service module (Apollo CSM), launched by the smaller Saturn IB rocket. For the final two manned missions to Skylab, a backup Apollo CSM/Saturn IB was assembled and made ready in case an in-orbit rescue mission was needed, but this backup vehicle was never flown.",
    "orbit": "Low Earth Orbit",
    "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/skylab_image_20190215230143.jpeg",
    "owners": [
      {
        "id": 44,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
        "name": "National Aeronautics and Space Administration",
        "abbrev": "NASA"
      }
    ]
  },
  "crew": [
    {
      "id": 716,
      "role": "Commander",
      "astronaut": {
        "id": 33,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/33/?format=api",
        "name": "Pete Conrad",
        "status": {
          "id": 11,
          "name": "Deceased"
        },
        "agency": {
          "id": 44,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
          "name": "National Aeronautics and Space Administration",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/pete2520conrad_image_20181128143459.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185518.jpeg"
      }
    },
    {
      "id": 718,
      "role": "Pilot",
      "astronaut": {
        "id": 317,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/317/?format=api",
        "name": "Paul J. Weitz",
        "status": {
          "id": 11,
          "name": "Deceased"
        },
        "agency": {
          "id": 44,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
          "name": "National Aeronautics and Space Administration",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/paul2520j.2520weitz_image_20190426143707.jpeg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190813.jpeg"
      }
    },
    {
      "id": 717,
      "role": "Science Pilot",
      "astronaut": {
        "id": 53,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/53/?format=api",
        "name": "Joseph P. Kerwin",
        "status": {
          "id": 2,
          "name": "Retired"
        },
        "agency": {
          "id": 44,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
          "name": "National Aeronautics and Space Administration",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/joseph2520p.2520kerwin_image_20181128151017.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190628.jpeg"
      }
    }
  ]
}