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

{
  "id": 122,
  "url": "https://lldev.thespacedevs.com/2.0.0/expedition/122/?format=api",
  "name": "Shenzhou 10",
  "start": "2013-06-13T05:11:00Z",
  "end": "2013-06-25T21:07:00Z",
  "spacestation": {
    "id": 7,
    "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/7/?format=api",
    "name": "Tiangong 1",
    "status": {
      "id": 2,
      "name": "De-Orbited"
    },
    "founded": "2011-09-29",
    "description": "Tiangong-1 (Chinese: 天宫一号; pinyin: Tiāngōng yīhào; literally: \"Heavenly Palace 1\" or \"Celestial Palace 1\") was China's first prototype space station. It orbited Earth from September 2011 to April 2018, serving as both a manned laboratory and an experimental testbed to demonstrate orbital rendezvous and docking capabilities during its two years of active operational life.\r\n\r\nTiangong-1 was visited by a series of Shenzhou spacecraft during its two-year operational lifetime. The first of these, the unmanned Shenzhou 8, successfully docked with the module in November 2011, while the manned Shenzhou 9 mission docked in June 2012. A third and final mission to Tiangong-1, the manned Shenzhou 10, docked in June 2013. The manned missions to Tiangong-1 were notable for including China's first female astronauts, Liu Yang and Wang Yaping.\r\n\r\nOn 21 March 2016, after a lifespan extended by two years, the China Manned Space Engineering Office announced that Tiangong-1 had officially ended its service. They went on to state that the telemetry link with Tiangong-1 had been lost. A couple of months later, amateur satellite trackers watching Tiangong-1 found that China's space agency had lost control of the station. In September, after conceding they had lost control over the station, officials speculated that the station would re-enter and burn up in the atmosphere late in 2017. According to the China Manned Space Engineering Office, Tiangong-1 started reentry over the southern Pacific Ocean, northwest of Tahiti, on 2 April 2018 at 00:15 UTC.",
    "orbit": "Low Earth Orbit",
    "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/tiangong25201_image_20190215013038.jpeg",
    "owners": [
      {
        "id": 17,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/17/?format=api",
        "name": "China National Space Administration",
        "abbrev": "CNSA"
      }
    ]
  },
  "crew": [
    {
      "id": 894,
      "role": "Commander",
      "astronaut": {
        "id": 209,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/209/?format=api",
        "name": "Nie Haisheng",
        "status": {
          "id": 1,
          "name": "Active"
        },
        "agency": {
          "id": 17,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/17/?format=api",
          "name": "China National Space Administration",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/nie_haisheng_image_20210616062454.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185955.jpeg"
      }
    },
    {
      "id": 895,
      "role": "Flight Engineer",
      "astronaut": {
        "id": 297,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/297/?format=api",
        "name": "Zhang Xiaoguang",
        "status": {
          "id": 1,
          "name": "Active"
        },
        "agency": {
          "id": 17,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/17/?format=api",
          "name": "China National Space Administration",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/zhang2520xiaoguang_image_20181201232412.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190829.jpeg"
      }
    },
    {
      "id": 896,
      "role": "Flight Engineer",
      "astronaut": {
        "id": 287,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/287/?format=api",
        "name": "Wang Yaping",
        "status": {
          "id": 1,
          "name": "Active"
        },
        "agency": {
          "id": 17,
          "url": "https://lldev.thespacedevs.com/2.0.0/agencies/17/?format=api",
          "name": "China National Space Administration",
          "type": "Government"
        },
        "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/wang_yaping_image_20211014075922.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190623.jpeg"
      }
    }
  ]
}