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

{
    "id": 8,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/8/?format=api",
    "name": "Mir EO-2",
    "start": "1987-02-05T21:38:00Z",
    "end": "1987-12-29T09:16:00Z",
    "spacestation": {
        "id": 5,
        "url": "https://ll.thespacedevs.com/2.0.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
            "id": 2,
            "name": "De-Orbited"
        },
        "founded": "1986-02-20",
        "description": "Mir was a space station that operated in low Earth orbit from 1986 to 2001, operated by the Soviet Union and later by Russia. Mir was the first modular space station and was assembled in orbit from 1986 to 1996.\r\n\r\nThe station served as a microgravity research laboratory in which crews conducted experiments in biology, human biology, physics, astronomy, meteorology and spacecraft systems with a goal of developing technologies required for permanent occupation of space.",
        "orbit": "Low Earth Orbit",
        "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.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": 2761,
            "role": "Commander",
            "astronaut": {
                "id": 234,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/234/?format=api",
                "name": "Yury Romanenko",
                "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/yury2520romanenko_image_20181201213833.jpeg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185547.jpeg"
            }
        },
        {
            "id": 691,
            "role": "Flight Engineer",
            "astronaut": {
                "id": 177,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/177/?format=api",
                "name": "Aleksandr Laveykin",
                "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/aleksandr2520laveykin_image_20181129234612.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190050.jpeg"
            }
        },
        {
            "id": 2773,
            "role": "Flight Engineer",
            "astronaut": {
                "id": 60,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/60/?format=api",
                "name": "Aleksandr Pavlovich Aleksandrov",
                "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/aleksandr2520pavlovich2520aleksandrov_image_20181128215144.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185700.jpeg"
            }
        }
    ]
}