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

{
    "id": 4,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/4/?format=api",
    "name": "Skylab IV",
    "start": "1973-11-16T14:01:23Z",
    "end": "1974-02-08T15:16:53Z",
    "spacestation": {
        "id": 6,
        "url": "https://ll.thespacedevs.com/2.0.0/spacestation/6/?format=api",
        "name": "Skylab",
        "status": {
            "id": 2,
            "name": "De-Orbited"
        },
        "founded": "1973-05-14",
        "description": "Skylab was a United States space station launched and operated by NASA, and occupied for about 24 weeks between May 1973 and February 1974 – the only space station the U.S. has operated exclusively. In 1979 it fell back to Earth amid huge worldwide media attention. Skylab included a workshop, a solar observatory, and other systems necessary for crew survival and scientific experiments. It was launched unmanned by a modified Saturn V rocket, with a weight of 170,000 pounds (77,000 kg). Lifting Skylab into low earth orbit was the final mission and launch of a Saturn V rocket (famous for carrying the manned Moon landing missions). Three missions delivered three-astronaut crews in the Apollo command and service module (Apollo CSM), launched by the smaller Saturn IB rocket. For the final two manned missions to Skylab, a backup Apollo CSM/Saturn IB was assembled and made ready in case an in-orbit rescue mission was needed, but this backup vehicle was never flown.",
        "orbit": "Low Earth Orbit",
        "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/skylab_image_20190215230143.jpeg",
        "owners": [
            {
                "id": 44,
                "url": "https://ll.thespacedevs.com/2.0.0/agencies/44/?format=api",
                "name": "National Aeronautics and Space Administration",
                "abbrev": "NASA"
            }
        ]
    },
    "crew": [
        {
            "id": 722,
            "role": "Commander",
            "astronaut": {
                "id": 303,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/303/?format=api",
                "name": "Gerald P. Carr",
                "status": {
                    "id": 11,
                    "name": "Deceased"
                },
                "agency": {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/gerald2520p.2520carr_image_20181202090629.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191052.jpeg"
            }
        },
        {
            "id": 724,
            "role": "Pilot",
            "astronaut": {
                "id": 314,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/314/?format=api",
                "name": "William R. Pogue",
                "status": {
                    "id": 11,
                    "name": "Deceased"
                },
                "agency": {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/william2520r.2520pogue_image_20181202091951.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185644.jpeg"
            }
        },
        {
            "id": 723,
            "role": "Science Pilot",
            "astronaut": {
                "id": 51,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/51/?format=api",
                "name": "Edward Gibson",
                "status": {
                    "id": 2,
                    "name": "Retired"
                },
                "agency": {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/edward2520gibson_image_20181128150839.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185325.jpeg"
            }
        }
    ]
}