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

{
  "id": 123,
  "url": "https://lldev.thespacedevs.com/2.0.0/expedition/123/?format=api",
  "name": "Shenzhou 11",
  "start": "2016-10-18T17:24:00Z",
  "end": "2016-11-14T04:41:00Z",
  "spacestation": {
    "id": 8,
    "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/8/?format=api",
    "name": "Tiangong 2",
    "status": {
      "id": 2,
      "name": "De-Orbited"
    },
    "founded": "2016-09-15",
    "description": "Tiangong-2 (Chinese: 天宫二号; pinyin: Tiāngōng èrhào; literally: \"Celestial Palace 2\") is a Chinese space laboratory and part of the Project 921-2 space station program. Tiangong-2 was launched on 15 September 2016.\r\n\r\nTiangong-2 is neither designed nor planned to be a permanent orbital station; rather, it is intended as a testbed for key technologies that will be used in the Chinese large modular space station, which is planned for launch between 2019 and 2022.",
    "orbit": "Low Earth Orbit",
    "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/tiangong25202_image_20190215013232.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": 891,
      "role": "Commander",
      "astronaut": {
        "id": 157,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/157/?format=api",
        "name": "Jing Haipeng",
        "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/jing2520haipeng_image_20181129231707.jpg",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185723.jpeg"
      }
    },
    {
      "id": 897,
      "role": "Flight Engineer",
      "astronaut": {
        "id": 86,
        "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/86/?format=api",
        "name": "Chen Dong",
        "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/chen_dong_image_20220604084758.png",
        "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190228.png"
      }
    }
  ]
}