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

{
    "id": 146,
    "url": "https://ll.thespacedevs.com/2.0.0/expedition/146/?format=api",
    "name": "Shenzhou 13",
    "start": "2021-10-15T22:48:39Z",
    "end": "2022-04-15T16:44:00Z",
    "spacestation": {
        "id": 18,
        "url": "https://ll.thespacedevs.com/2.0.0/spacestation/18/?format=api",
        "name": "Tiangong space station",
        "status": {
            "id": 1,
            "name": "Active"
        },
        "founded": "2021-04-29",
        "description": "The Tiangong space station is a space station placed in Low Earth orbit between 340 and 450 km above the surface. It will be roughly one-fifth the mass of the International Space Station and about the size of the Mir space station.",
        "orbit": "Low Earth Orbit",
        "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/tiangong_space__image_20231031004146.png",
        "owners": [
            {
                "id": 88,
                "url": "https://ll.thespacedevs.com/2.0.0/agencies/88/?format=api",
                "name": "China Aerospace Science and Technology Corporation",
                "abbrev": "CASC"
            }
        ]
    },
    "crew": [
        {
            "id": 3580,
            "role": "Commander",
            "astronaut": {
                "id": 296,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/296/?format=api",
                "name": "Zhai Zhigang",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 17,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/17/?format=api",
                    "name": "China National Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/zhai_zhigang_image_20211014075835.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185732.jpeg"
            }
        },
        {
            "id": 3581,
            "role": "Operator",
            "astronaut": {
                "id": 287,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/287/?format=api",
                "name": "Wang Yaping",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 17,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/17/?format=api",
                    "name": "China National Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/wang_yaping_image_20211014075922.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190623.jpeg"
            }
        },
        {
            "id": 3582,
            "role": "Operator",
            "astronaut": {
                "id": 666,
                "url": "https://ll.thespacedevs.com/2.0.0/astronaut/666/?format=api",
                "name": "Ye Guangfu",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 17,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/17/?format=api",
                    "name": "China National Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/ye_guangfu_image_20211014075904.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190809.jpeg"
            }
        }
    ]
}