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

{
    "id": 125,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/125/?format=api",
    "name": "Salyut 7 EP-1",
    "start": "1982-06-24T16:29:48Z",
    "end": "1982-07-02T14:20:40Z",
    "spacestation": {
        "id": 15,
        "url": "https://ll.thespacedevs.com/2.0.0/spacestation/15/?format=api",
        "name": "Salyut 7",
        "status": {
            "id": 2,
            "name": "De-Orbited"
        },
        "founded": "1982-04-19",
        "description": "Salyut 7, (a.k.a. DOS-6) was a space station in low Earth orbit from April 1982 to February 1991. It was first manned in May 1982 with two crew via Soyuz T-5, and last visited in June 1986, by Soyuz T-15. Various crew and modules were used over its lifetime, including 12 manned and 15 unmanned launches in total. Supporting spacecraft included the Soyuz T, Progress, and TKS spacecraft.",
        "orbit": "Low Earth Orbit",
        "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25207_image_20190318100217.jpg",
        "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": 2803,
            "role": "Commander",
            "astronaut": {
                "id": 97,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/97/?format=api",
                "name": "Vladimir Dzhanibekov",
                "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/vladimir2520dzhanibekov_image_20181128230017.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185427.jpeg"
            }
        },
        {
            "id": 711,
            "role": "Flight Engineer",
            "astronaut": {
                "id": 153,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/153/?format=api",
                "name": "Aleksandr Ivanchenkov",
                "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/aleksandr2520ivanchenkov_image_20181129231158.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190053.jpeg"
            }
        },
        {
            "id": 680,
            "role": "Research Cosmonaut",
            "astronaut": {
                "id": 88,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/88/?format=api",
                "name": "Jean-Loup Chrétien",
                "status": {
                    "id": 2,
                    "name": "Retired"
                },
                "agency": {
                    "id": 46,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/46/?format=api",
                    "name": "National Center of Space Research",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/jean-loup2520chr25c325a9tien_image_20181128224801.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185431.jpeg"
            }
        }
    ]
}