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

{
    "id": 6,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/6/?format=api",
    "name": "Soyuz 11",
    "start": "1971-06-06T04:55:09Z",
    "end": "1971-06-29T23:16:52Z",
    "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": 759,
            "role": "Commander",
            "astronaut": {
                "id": 93,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/93/?format=api",
                "name": "Georgy Dobrovolsky",
                "status": {
                    "id": 4,
                    "name": "Lost In Flight"
                },
                "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/georgy2520dobrovolsky_image_20181128225404.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190004.jpeg"
            }
        },
        {
            "id": 760,
            "role": "Flight Engineer",
            "astronaut": {
                "id": 283,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/283/?format=api",
                "name": "Vladislav Volkov",
                "status": {
                    "id": 4,
                    "name": "Lost In Flight"
                },
                "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/vladislav2520volkov_image_20181201224807.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185704.jpeg"
            }
        },
        {
            "id": 761,
            "role": "Test Engineer",
            "astronaut": {
                "id": 219,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/219/?format=api",
                "name": "Viktor Patsayev",
                "status": {
                    "id": 4,
                    "name": "Lost In Flight"
                },
                "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/viktor2520patsayev_image_20181201185617.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190745.jpeg"
            }
        }
    ]
}