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

{
    "id": 135,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/135/?format=api",
    "name": "Salyut 7 EO-5",
    "start": "1986-03-13T12:33:09Z",
    "end": "1986-07-16T12:34:05Z",
    "spacestation": {
        "id": 15,
        "url": "https://ll.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://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25207_image_20190318100217.jpg",
        "owners": [
            {
                "id": 63,
                "url": "https://ll.thespacedevs.com/2.0.0/agencies/63/?format=api",
                "name": "Russian Federal Space Agency (ROSCOSMOS)",
                "abbrev": "RFSA"
            }
        ]
    },
    "crew": [
        {
            "id": 692,
            "role": "Commander",
            "astronaut": {
                "id": 162,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/162/?format=api",
                "name": "Leonid Kizim",
                "status": {
                    "id": 11,
                    "name": "Deceased"
                },
                "agency": {
                    "id": 63,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/63/?format=api",
                    "name": "Russian Federal Space Agency (ROSCOSMOS)",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/leonid2520kizim_image_20181129232451.jpeg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190101.jpeg"
            }
        },
        {
            "id": 693,
            "role": "Flight Engineer",
            "astronaut": {
                "id": 258,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/258/?format=api",
                "name": "Vladimir Solovyov",
                "status": {
                    "id": 2,
                    "name": "Retired"
                },
                "agency": {
                    "id": 63,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/63/?format=api",
                    "name": "Russian Federal Space Agency (ROSCOSMOS)",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/vladimir2520solovyov_image_20181201221452.jpeg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190337.jpeg"
            }
        }
    ]
}