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

{
    "id": 3,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/3/?format=api",
    "name": "Skylab III",
    "start": "1973-07-28T11:10:50Z",
    "end": "1973-09-25T22:19:51Z",
    "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": 719,
            "role": "Commander",
            "astronaut": {
                "id": 43,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/43/?format=api",
                "name": "Alan Bean",
                "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/alan2520bean_image_20181128145355.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191125.jpeg"
            }
        },
        {
            "id": 721,
            "role": "Pilot",
            "astronaut": {
                "id": 310,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/310/?format=api",
                "name": "Jack R. Lousma",
                "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/jack2520r.2520lousma_image_20181202091552.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185809.jpeg"
            }
        },
        {
            "id": 720,
            "role": "Science Pilot",
            "astronaut": {
                "id": 50,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/50/?format=api",
                "name": "Owen K. Garriott",
                "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/owen2520k.2520garriott_image_20190415193012.jpeg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190930.jpeg"
            }
        }
    ]
}