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

{
    "id": 5,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/5/?format=api",
    "name": "Soyuz 10",
    "start": "1971-04-23T23:54:06Z",
    "end": "1971-04-24T23:40:00Z",
    "spacestation": {
        "id": 9,
        "url": "https://ll.thespacedevs.com/2.0.0/spacestation/9/?format=api",
        "name": "Salyut 1",
        "status": {
            "id": 2,
            "name": "De-Orbited"
        },
        "founded": "1971-04-19",
        "description": "Salyut 1 (DOS-1) was the first space station of any kind, launched into low Earth orbit by the Soviet Union on April 19, 1971. The Salyut program followed this with five more successful launches out of seven more stations. The final module of the program, Zvezda (DOS-8) became the core of the Russian segment of the International Space Station and remains in orbit.",
        "orbit": "Low Earth Orbit",
        "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25201_image_20190217072508.jpeg",
        "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": 747,
            "role": "Commander",
            "astronaut": {
                "id": 629,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/629/?format=api",
                "name": "Vladimir Shatalov",
                "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/vladimir2520shatalov_image_20190217072844.jpeg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191000.jpeg"
            }
        },
        {
            "id": 748,
            "role": "Flight Engineer",
            "astronaut": {
                "id": 630,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/630/?format=api",
                "name": "Aleksei Yeliseyev",
                "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/aleksei_yelisey_image_20200713114929.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190135.jpeg"
            }
        },
        {
            "id": 762,
            "role": "Test Engineer",
            "astronaut": {
                "id": 631,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/631/?format=api",
                "name": "Nikolay Rukavishnikov",
                "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/nikolay2520rukavishnikov_image_20190217072711.jpeg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185846.jpeg"
            }
        }
    ]
}