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

{
  "id": 127,
  "url": "https://lldev.thespacedevs.com/2.0.0/expedition/127/?format=api",
  "name": "Salyut 7 EO-2",
  "start": "1983-06-27T09:12:00Z",
  "end": "1983-11-23T19:58:00Z",
  "spacestation": {
    "id": 15,
    "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/15/?format=api",
    "name": "Salyut 7",
    "status": {
      "id": 2,
      "name": "De-Orbited"
    },
    "founded": "1982-04-19",
    "description": "Salyut 7, (a.k.a. DOS-6) was a space station in low Earth orbit from April 1982 to February 1991. It was first manned in May 1982 with two crew via Soyuz T-5, and last visited in June 1986, by Soyuz T-15. Various crew and modules were used over its lifetime, including 12 manned and 15 unmanned launches in total. Supporting spacecraft included the Soyuz T, Progress, and TKS spacecraft.",
    "orbit": "Low Earth Orbit",
    "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/salyut25207_image_20190318100217.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": 681,
      "role": "Commander",
      "astronaut": {
        "id": 187,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/187/?format=api",
        "name": "Vladimir Lyakhov",
        "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/vladimir2520lyakhov_image_20181130000114.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185507.jpeg"
      }
    },
    {
      "id": 689,
      "role": "Flight Engineer",
      "astronaut": {
        "id": 60,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/60/?format=api",
        "name": "Aleksandr Pavlovich Aleksandrov",
        "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/aleksandr2520pavlovich2520aleksandrov_image_20181128215144.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185700.jpeg"
      }
    }
  ]
}