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

{
  "count": 163,
  "next": null,
  "previous": "https://lldev.thespacedevs.com/2.0.0/expedition/?format=api&limit=10&offset=150&ordering=end",
  "results": [
    {
      "id": 162,
      "url": "https://lldev.thespacedevs.com/2.0.0/expedition/162/?format=api",
      "name": "Expedition 73",
      "start": "2025-04-19T21:57:33Z",
      "end": "2025-12-09T01:41:00Z",
      "spacestation": {
        "id": 4,
        "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/4/?format=api",
        "name": "International Space Station",
        "status": {
          "id": 1,
          "name": "Active"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
      }
    },
    {
      "id": 166,
      "url": "https://lldev.thespacedevs.com/2.0.0/expedition/166/?format=api",
      "name": "Shenzhou 21",
      "start": "2025-10-31T19:22:00Z",
      "end": null,
      "spacestation": {
        "id": 18,
        "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/18/?format=api",
        "name": "Tiangong space station",
        "status": {
          "id": 1,
          "name": "Active"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/tiangong_space__image_20231031004146.png"
      }
    },
    {
      "id": 165,
      "url": "https://lldev.thespacedevs.com/2.0.0/expedition/165/?format=api",
      "name": "Expedition 74",
      "start": "2025-12-09T01:41:00Z",
      "end": null,
      "spacestation": {
        "id": 4,
        "url": "https://lldev.thespacedevs.com/2.0.0/spacestation/4/?format=api",
        "name": "International Space Station",
        "status": {
          "id": 1,
          "name": "Active"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
      }
    }
  ]
}