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

{
  "id": 128,
  "url": "https://lldev.thespacedevs.com/2.0.0/expedition/128/?format=api",
  "name": "Salyut 7 EO-3",
  "start": "1984-02-08T12:07:26Z",
  "end": "1984-10-02T10:57: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": 2784,
      "role": "Commander",
      "astronaut": {
        "id": 162,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/162/?format=api",
        "name": "Leonid Kizim",
        "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/leonid2520kizim_image_20181129232451.jpeg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190101.jpeg"
      }
    },
    {
      "id": 702,
      "role": "Research Cosmonaut",
      "astronaut": {
        "id": 63,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/63/?format=api",
        "name": "Oleg Atkov",
        "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/oleg2520atkov_image_20181128220507.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190638.jpeg"
      }
    },
    {
      "id": 2790,
      "role": "Flight Engineer",
      "astronaut": {
        "id": 258,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/258/?format=api",
        "name": "Vladimir Solovyov",
        "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/vladimir2520solovyov_image_20181201221452.jpeg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190337.jpeg"
      }
    }
  ]
}