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": 161,
    "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": 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-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            }
        }
    ]
}