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/102/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "id": 102,
  "url": "https://lldev.thespacedevs.com/2.0.0/expedition/102/?format=api",
  "name": "Salyut 6 EO-1",
  "start": "1977-12-10T01:18:39Z",
  "end": "1978-03-16T11:18:47Z",
  "spacestation": {
    "id": 14,
    "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/14/?format=api",
    "name": "Salyut 6",
    "status": {
      "id": 2,
      "name": "De-Orbited"
    },
    "founded": "1977-09-29",
    "description": "Salyut 6, also known as DOS-5, was a Soviet orbital space station, the eighth flown as part of the Salyut programme. Launched on 29 September 1977 by a Proton rocket, the station was the first of the \"second-generation\" type of space station. Salyut 6 possessed several revolutionary advances over the earlier Soviet space stations, which it nevertheless resembled in overall design. These included the addition of a second docking port, a new main propulsion system and the station's primary scientific instrument, the BST-1M multispectral telescope. The addition of the second docking port made crew handovers and station resupply by unmanned Progress freighters possible for the first time.",
    "orbit": "Low Earth Orbit",
    "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/salyut25206_image_20190318095930.jpg",
    "owners": [
      {
        "id": 63,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/63/?format=api",
        "name": "Russian Federal Space Agency (ROSCOSMOS)",
        "abbrev": "RFSA"
      }
    ]
  },
  "crew": [
    {
      "id": 2768,
      "role": "Commander",
      "astronaut": {
        "id": 234,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/234/?format=api",
        "name": "Yury Romanenko",
        "status": {
          "id": 2,
          "name": "Retired"
        },
        "agency": {
          "id": 63,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/63/?format=api",
          "name": "Russian Federal Space Agency (ROSCOSMOS)",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/yury2520romanenko_image_20181201213833.jpeg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185547.jpeg"
      }
    },
    {
      "id": 2800,
      "role": "Flight Engineer",
      "astronaut": {
        "id": 116,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/116/?format=api",
        "name": "Georgy Grechko",
        "status": {
          "id": 11,
          "name": "Deceased"
        },
        "agency": {
          "id": 63,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/63/?format=api",
          "name": "Russian Federal Space Agency (ROSCOSMOS)",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/georgy2520grechko_image_20181128233337.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190708.jpeg"
      }
    }
  ]
}