API endpoint that allows Expeditions to be viewed.

GET:
Return a list of all the existing expeditions.

MODE:
Normal and Detailed
/2.2.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.2.0/expedition/?space_station=1&mode=detailed

Search for all Expeditions with the Astronaut named John
Example - /2.2.0/expedition/?search=John

ORDERING:
Fields - 'id', 'start', 'end'
Order reverse via Start date.
Example - /2.2.0/astronaut/?order=-start

GET /2.2.0/expedition/?format=api&ordering=-id
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 155,
    "next": "https://ll.thespacedevs.com/2.2.0/expedition/?format=api&limit=10&offset=10&ordering=-id",
    "previous": null,
    "results": [
        {
            "id": 158,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/158/?format=api",
            "name": "Expedition 71",
            "start": "2024-04-06T03:53:57Z",
            "end": null,
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
                "name": "International Space Station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 1004,
                    "name": "Expedition 71 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition2520_mission_patch_20240406053101.png",
                    "agency": {
                        "id": 44,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                        "name": "National Aeronautics and Space Administration",
                        "type": "Government"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 474,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/474/?format=api",
                    "name": "Expedition 71 EVA 1",
                    "start": "2024-04-25T14:57:00Z",
                    "end": "2024-04-25T19:33:00Z",
                    "duration": "PT4H36M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 157,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/157/?format=api",
            "name": "Axiom Mission 3",
            "start": "2024-01-20T10:42:00Z",
            "end": "2024-02-07T14:20:00Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
                "name": "International Space Station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 901,
                    "name": "Ax-3 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/ax-32520patch_mission_patch_20231019065301.png",
                    "agency": {
                        "id": 1022,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/1022/?format=api",
                        "name": "Axiom Space",
                        "type": "Private"
                    }
                }
            ],
            "spacewalks": []
        },
        {
            "id": 156,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/156/?format=api",
            "name": "Shenzhou 17",
            "start": "2023-10-26T09:46:00Z",
            "end": null,
            "spacestation": {
                "id": 18,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/18/?format=api",
                "name": "Tiangong space station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/tiangong_space__image_20231031004146.png"
            },
            "mission_patches": [
                {
                    "id": 904,
                    "name": "Shenzhou 17 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/shenzhou252017_mission_patch_20231025105109.jpg",
                    "agency": {
                        "id": 17,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/17/?format=api",
                        "name": "China National Space Administration",
                        "type": "Government"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 472,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/472/?format=api",
                    "name": "Shenzhou 17 EVA 2",
                    "start": "2024-03-01T21:32:00Z",
                    "end": "2024-03-02T05:32:00Z",
                    "duration": "PT8H",
                    "location": "Tiangong Space Station"
                },
                {
                    "id": 471,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/471/?format=api",
                    "name": "Shenzhou 17 EVA 1",
                    "start": "2023-12-21T06:05:00Z",
                    "end": "2023-12-21T13:35:00Z",
                    "duration": "PT7H30M",
                    "location": "Tiangong Space Station"
                }
            ]
        },
        {
            "id": 155,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/155/?format=api",
            "name": "Expedition 70",
            "start": "2023-09-26T13:40:00Z",
            "end": "2024-04-06T03:53:57Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
                "name": "International Space Station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 829,
                    "name": "Expedition 70 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition2520_mission_patch_20230704062145.png",
                    "agency": {
                        "id": 27,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/27/?format=api",
                        "name": "European Space Agency",
                        "type": "Multinational"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 469,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/469/?format=api",
                    "name": "Expedition 70 EVA 2",
                    "start": "2023-11-01T12:05:00Z",
                    "end": "2023-11-01T18:47:00Z",
                    "duration": "PT6H42M",
                    "location": "International Space Station"
                },
                {
                    "id": 470,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/470/?format=api",
                    "name": "Expedition 70 EVA 1",
                    "start": "2023-10-25T17:49:00Z",
                    "end": "2023-10-26T01:30:00Z",
                    "duration": "PT7H41M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 154,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/154/?format=api",
            "name": "Shenzhou 16",
            "start": "2023-05-30T08:29:00Z",
            "end": "2023-10-30T12:37:00Z",
            "spacestation": {
                "id": 18,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/18/?format=api",
                "name": "Tiangong space station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/tiangong_space__image_20231031004146.png"
            },
            "mission_patches": [
                {
                    "id": 779,
                    "name": "Shenzhou 16 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/shenzhou252016_mission_patch_20230530053248.png",
                    "agency": {
                        "id": 17,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/17/?format=api",
                        "name": "China National Space Administration",
                        "type": "Government"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 466,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/466/?format=api",
                    "name": "Shenzhou 16 EVA 1",
                    "start": "2023-07-20T05:40:00Z",
                    "end": "2023-07-20T13:40:00Z",
                    "duration": "PT8H",
                    "location": "Tiangong Space Station"
                }
            ]
        },
        {
            "id": 153,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/153/?format=api",
            "name": "Axiom Mission 2",
            "start": "2023-05-22T13:12:00Z",
            "end": "2023-05-30T15:05:00Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
                "name": "International Space Station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 778,
                    "name": "Axiom Mission 2 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/axiom2520missi_mission_patch_20230522161438.png",
                    "agency": {
                        "id": 1022,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/1022/?format=api",
                        "name": "Axiom Space",
                        "type": "Private"
                    }
                }
            ],
            "spacewalks": []
        },
        {
            "id": 152,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/152/?format=api",
            "name": "Shenzhou 15",
            "start": "2022-11-29T21:42:00Z",
            "end": "2023-06-03T13:29:00Z",
            "spacestation": {
                "id": 18,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/18/?format=api",
                "name": "Tiangong space station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/tiangong_space__image_20231031004146.png"
            },
            "mission_patches": [
                {
                    "id": 776,
                    "name": "Shenzhou 15 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/shenzhou252015_mission_patch_20230506193351.png",
                    "agency": {
                        "id": 17,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/17/?format=api",
                        "name": "China National Space Administration",
                        "type": "Government"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 461,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/461/?format=api",
                    "name": "Shenzhou 15 EVA 4 (placeholder)",
                    "start": "2023-04-15T00:00:00Z",
                    "end": "2023-04-15T06:00:00Z",
                    "duration": "PT6H",
                    "location": "Tiangong Space Station"
                },
                {
                    "id": 460,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/460/?format=api",
                    "name": "Shenzhou 15 EVA 3 (placeholder)",
                    "start": "2023-03-30T00:00:00Z",
                    "end": "2023-03-30T06:00:00Z",
                    "duration": "PT6H",
                    "location": "Tiangong Space Station"
                },
                {
                    "id": 459,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/459/?format=api",
                    "name": "Shenzhou 15 EVA 2 (placeholder)",
                    "start": "2023-02-28T00:00:00Z",
                    "end": "2023-02-28T06:00:00Z",
                    "duration": "PT6H",
                    "location": "Tiangong Space Station"
                },
                {
                    "id": 458,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/458/?format=api",
                    "name": "Shenzhou 15 EVA 1",
                    "start": "2023-02-09T09:10:00Z",
                    "end": "2023-02-09T16:16:00Z",
                    "duration": "PT7H6M",
                    "location": "Tiangong Space Station"
                }
            ]
        },
        {
            "id": 151,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/151/?format=api",
            "name": "Expedition 69",
            "start": "2023-03-28T09:57:27Z",
            "end": "2023-09-26T13:40:00Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
                "name": "International Space Station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 770,
                    "name": "ISS Expedition 69 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/iss2520expedit_mission_patch_20230329140742.png",
                    "agency": {
                        "id": 44,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                        "name": "National Aeronautics and Space Administration",
                        "type": "Government"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 467,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/467/?format=api",
                    "name": "Expedition 69 EVA 7",
                    "start": "2023-08-09T14:44:00Z",
                    "end": "2023-08-09T21:19:00Z",
                    "duration": "PT6H35M",
                    "location": "International Space Station"
                },
                {
                    "id": 465,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/465/?format=api",
                    "name": "Expedition 69 EVA 6",
                    "start": "2023-06-22T14:24:33Z",
                    "end": "2023-06-22T20:48:00Z",
                    "duration": "PT6H23M27S",
                    "location": "International Space Station"
                },
                {
                    "id": 464,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/464/?format=api",
                    "name": "Expedition 69 EVA 5",
                    "start": "2023-06-15T12:42:00Z",
                    "end": "2023-06-15T18:17:00Z",
                    "duration": "PT5H35M",
                    "location": "International Space Station"
                },
                {
                    "id": 463,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/463/?format=api",
                    "name": "Expedition 69 EVA 4",
                    "start": "2023-06-09T13:24:00Z",
                    "end": "2023-06-09T19:27:00Z",
                    "duration": "PT6H3M",
                    "location": "International Space Station"
                },
                {
                    "id": 462,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/462/?format=api",
                    "name": "Expedition 69 EVA 3",
                    "start": "2023-05-12T15:47:00Z",
                    "end": "2023-05-12T21:01:00Z",
                    "duration": "PT5H14M",
                    "location": "International Space Station"
                },
                {
                    "id": 449,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/449/?format=api",
                    "name": "Expedition 69 EVA 2",
                    "start": "2023-05-03T20:00:00Z",
                    "end": "2023-05-04T03:11:00Z",
                    "duration": "PT7H11M",
                    "location": "International Space Station"
                },
                {
                    "id": 447,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/447/?format=api",
                    "name": "Expedition 69 EVA 1",
                    "start": "2023-04-19T01:40:00Z",
                    "end": "2023-04-19T09:35:00Z",
                    "duration": "PT7H55M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 150,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/150/?format=api",
            "name": "Expedition 68",
            "start": "2022-09-28T13:35:00Z",
            "end": "2023-03-28T09:57:27Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
                "name": "International Space Station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 654,
                    "name": "Expedition 68 Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition2520_mission_patch_20220927162610.png",
                    "agency": {
                        "id": 44,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                        "name": "National Aeronautics and Space Administration",
                        "type": "Government"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 448,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/448/?format=api",
                    "name": "Expedition 68 EVA 7",
                    "start": "2023-04-28T13:11:00Z",
                    "end": "2023-04-28T20:12:00Z",
                    "duration": "PT7H1M",
                    "location": "International Space Station"
                },
                {
                    "id": 446,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/446/?format=api",
                    "name": "Expedition 68 EVA 6",
                    "start": "2023-02-02T12:45:00Z",
                    "end": "2023-02-02T19:26:00Z",
                    "duration": "PT6H41M",
                    "location": "International Space Station"
                },
                {
                    "id": 445,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/445/?format=api",
                    "name": "Expedition 68 EVA 5",
                    "start": "2023-01-20T13:14:00Z",
                    "end": "2023-01-20T20:35:00Z",
                    "duration": "PT7H21M",
                    "location": "International Space Station"
                },
                {
                    "id": 444,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/444/?format=api",
                    "name": "Expedition 68 EVA 4",
                    "start": "2022-12-22T13:19:00Z",
                    "end": "2022-12-22T20:27:00Z",
                    "duration": "PT7H8M",
                    "location": "International Space Station"
                },
                {
                    "id": 443,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/443/?format=api",
                    "name": "Expedition 68 EVA 3",
                    "start": "2022-12-03T12:16:00Z",
                    "end": "2022-12-03T19:21:00Z",
                    "duration": "PT7H5M",
                    "location": "International Space Station"
                },
                {
                    "id": 442,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/442/?format=api",
                    "name": "Expedition 68 EVA 2",
                    "start": "2022-11-17T14:39:00Z",
                    "end": "2022-11-17T21:07:00Z",
                    "duration": "PT6H28M",
                    "location": "International Space Station"
                },
                {
                    "id": 441,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/441/?format=api",
                    "name": "Expedition 68 EVA 1",
                    "start": "2022-11-15T14:14:00Z",
                    "end": "2022-11-15T21:25:00Z",
                    "duration": "PT7H11M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 149,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/149/?format=api",
            "name": "Shenzhou 14",
            "start": "2022-06-05T09:42:00Z",
            "end": "2022-12-04T12:09:00Z",
            "spacestation": {
                "id": 18,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/18/?format=api",
                "name": "Tiangong space station",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/tiangong_space__image_20231031004146.png"
            },
            "mission_patches": [
                {
                    "id": 634,
                    "name": "Shenzhou 14 Mission Patch",
                    "priority": 10,
                    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/shenzhou252014_mission_patch_20220604085704.png",
                    "agency": {
                        "id": 17,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/17/?format=api",
                        "name": "China National Space Administration",
                        "type": "Government"
                    }
                }
            ],
            "spacewalks": [
                {
                    "id": 457,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/457/?format=api",
                    "name": "Shenzhou 14 EVA 3",
                    "start": "2022-11-17T03:16:00Z",
                    "end": "2022-11-17T08:50:00Z",
                    "duration": "PT5H34M",
                    "location": "Tiangong Space Station"
                },
                {
                    "id": 456,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/456/?format=api",
                    "name": "Shenzhou 14 EVA 2",
                    "start": "2022-09-17T05:35:00Z",
                    "end": "2022-09-17T09:47:00Z",
                    "duration": "PT4H12M",
                    "location": "Tiangong Space Station"
                },
                {
                    "id": 455,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/455/?format=api",
                    "name": "Shenzhou 14 EVA 1",
                    "start": "2022-09-01T10:26:00Z",
                    "end": "2022-09-01T16:33:00Z",
                    "duration": "PT6H7M",
                    "location": "Tiangong Space Station"
                }
            ]
        }
    ]
}