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&offset=30&ordering=-start
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 159,
    "next": "https://ll.thespacedevs.com/2.2.0/expedition/?format=api&limit=10&offset=40&ordering=-start",
    "previous": "https://ll.thespacedevs.com/2.2.0/expedition/?format=api&limit=10&offset=20&ordering=-start",
    "results": [
        {
            "id": 90,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/90/?format=api",
            "name": "Expedition 56",
            "start": "2018-06-03T09:16:00Z",
            "end": "2018-10-04T07:57: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 717,
                    "name": "Expedition 56 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_56_patch_20221024013517.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": 399,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/399/?format=api",
                    "name": "Expedition 56 EVA 2",
                    "start": "2018-08-15T16:17:00Z",
                    "end": "2018-08-16T00:03:00Z",
                    "duration": "PT7H46M",
                    "location": "International Space Station"
                },
                {
                    "id": 398,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/398/?format=api",
                    "name": "Expedition 56 EVA 1",
                    "start": "2018-06-14T13:06:00Z",
                    "end": "2018-06-14T19:55:00Z",
                    "duration": "PT6H49M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 89,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/89/?format=api",
            "name": "Expedition 55",
            "start": "2018-02-27T23:08:00Z",
            "end": "2018-06-03T09:16: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 716,
                    "name": "Expedition 55 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_55_patch_20221024013517.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": 397,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/397/?format=api",
                    "name": "Expedition 55 EVA 2",
                    "start": "2018-05-16T11:39:00Z",
                    "end": "2018-05-16T18:10:00Z",
                    "duration": "PT6H31M",
                    "location": "International Space Station"
                },
                {
                    "id": 396,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/396/?format=api",
                    "name": "Expedition 55 EVA 1",
                    "start": "2018-03-29T13:33:00Z",
                    "end": "2018-03-29T19:43:00Z",
                    "duration": "PT6H10M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 88,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/88/?format=api",
            "name": "Expedition 54",
            "start": "2017-12-14T05:14:00Z",
            "end": "2018-02-27T23:08: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 715,
                    "name": "Expedition 54 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_54_patch_20221024013517.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": 395,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/395/?format=api",
                    "name": "Expedition 54 EVA 3",
                    "start": "2018-02-16T12:00:00Z",
                    "end": "2018-02-16T17:57:00Z",
                    "duration": "PT5H57M",
                    "location": "International Space Station"
                },
                {
                    "id": 394,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/394/?format=api",
                    "name": "Expedition 54 EVA 2",
                    "start": "2018-02-02T15:34:00Z",
                    "end": "2018-02-02T23:47:00Z",
                    "duration": "PT8H13M",
                    "location": "International Space Station"
                },
                {
                    "id": 393,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/393/?format=api",
                    "name": "Expedition 54 EVA 1",
                    "start": "2018-01-23T11:49:00Z",
                    "end": "2018-01-23T19:13:00Z",
                    "duration": "PT7H24M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 87,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/87/?format=api",
            "name": "Expedition 53",
            "start": "2017-09-02T21:58:00Z",
            "end": "2017-12-14T05:14: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 714,
                    "name": "Expedition 53 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_53_patch_20221024013516.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": 392,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/392/?format=api",
                    "name": "Expedition 53 EVA 3",
                    "start": "2017-10-20T11:47:00Z",
                    "end": "2017-10-20T18:36:00Z",
                    "duration": "PT6H49M",
                    "location": "International Space Station"
                },
                {
                    "id": 391,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/391/?format=api",
                    "name": "Expedition 53 EVA 2",
                    "start": "2017-10-10T11:56:00Z",
                    "end": "2017-10-10T18:22:00Z",
                    "duration": "PT6H26M",
                    "location": "International Space Station"
                },
                {
                    "id": 390,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/390/?format=api",
                    "name": "Expedition 53 EVA 1",
                    "start": "2017-10-05T12:05:00Z",
                    "end": "2017-10-05T19:00:00Z",
                    "duration": "PT6H55M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 86,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/86/?format=api",
            "name": "Expedition 52",
            "start": "2017-06-02T10:47:00Z",
            "end": "2017-09-02T21:58: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 713,
                    "name": "Expedition 52 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_52_patch_20221024013516.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": 389,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/389/?format=api",
                    "name": "Expedition 52 EVA",
                    "start": "2017-08-17T14:36:00Z",
                    "end": "2017-08-17T22:10:00Z",
                    "duration": "PT7H34M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 85,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/85/?format=api",
            "name": "Expedition 51",
            "start": "2017-04-10T07:58:00Z",
            "end": "2017-06-02T10:47: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 712,
                    "name": "Expedition 51 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_51_patch_20221024013515.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": 388,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/388/?format=api",
                    "name": "Expedition 51 EVA 2",
                    "start": "2017-05-23T11:20:00Z",
                    "end": "2017-05-23T14:06:00Z",
                    "duration": "PT2H46M",
                    "location": "International Space Station"
                },
                {
                    "id": 387,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/387/?format=api",
                    "name": "Expedition 51 EVA 1",
                    "start": "2017-05-12T13:01:00Z",
                    "end": "2017-05-12T17:21:00Z",
                    "duration": "PT4H20M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 84,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/84/?format=api",
            "name": "Expedition 50",
            "start": "2016-10-30T00:35:00Z",
            "end": "2017-04-10T07:58: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 711,
                    "name": "Expedition 50 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_50_patch_20221024013515.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": 386,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/386/?format=api",
                    "name": "Expedition 50 EVA 4",
                    "start": "2017-03-30T11:29:00Z",
                    "end": "2017-03-30T18:33:00Z",
                    "duration": "PT7H4M",
                    "location": "International Space Station"
                },
                {
                    "id": 385,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/385/?format=api",
                    "name": "Expedition 50 EVA 3",
                    "start": "2017-03-24T11:24:00Z",
                    "end": "2017-03-24T17:58:00Z",
                    "duration": "PT6H34M",
                    "location": "International Space Station"
                },
                {
                    "id": 384,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/384/?format=api",
                    "name": "Expedition 50 EVA 2",
                    "start": "2017-01-13T11:22:00Z",
                    "end": "2017-01-13T17:20:00Z",
                    "duration": "PT5H58M",
                    "location": "International Space Station"
                },
                {
                    "id": 383,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/383/?format=api",
                    "name": "Expedition 50 EVA 1",
                    "start": "2017-01-06T12:23:00Z",
                    "end": "2017-01-06T18:54:00Z",
                    "duration": "PT6H31M",
                    "location": "International Space Station"
                }
            ]
        },
        {
            "id": 123,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/123/?format=api",
            "name": "Shenzhou 11",
            "start": "2016-10-18T17:24:00Z",
            "end": "2016-11-14T04:41:00Z",
            "spacestation": {
                "id": 8,
                "url": "https://ll.thespacedevs.com/2.2.0/spacestation/8/?format=api",
                "name": "Tiangong 2",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/tiangong25202_image_20190215013232.jpeg"
            },
            "mission_patches": [
                {
                    "id": 173,
                    "name": "Shenzhou 11 Patch",
                    "priority": 10,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/shenzhou-11252_mission_patch_20211031042607.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": 83,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/83/?format=api",
            "name": "Expedition 49",
            "start": "2016-09-06T21:51:00Z",
            "end": "2016-10-30T00:35: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 698,
                    "name": "Expedition 49 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_49_patch_20221024013508.png",
                    "agency": {
                        "id": 44,
                        "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                        "name": "National Aeronautics and Space Administration",
                        "type": "Government"
                    }
                },
                {
                    "id": 709,
                    "name": "Expedition 49 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_49_patch_20221024013514.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": 82,
            "url": "https://ll.thespacedevs.com/2.2.0/expedition/82/?format=api",
            "name": "Expedition 48",
            "start": "2016-06-18T05:52:00Z",
            "end": "2016-09-06T21:51: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://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg"
            },
            "mission_patches": [
                {
                    "id": 708,
                    "name": "Expedition 48 Patch",
                    "priority": 9,
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_48_patch_20221024013513.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": 382,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/382/?format=api",
                    "name": "Expedition 48 EVA 2",
                    "start": "2016-09-01T11:53:00Z",
                    "end": "2016-09-01T18:41:00Z",
                    "duration": "PT6H48M",
                    "location": "International Space Station"
                },
                {
                    "id": 381,
                    "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/381/?format=api",
                    "name": "Expedition 48 EVA 1",
                    "start": "2016-08-19T12:04:00Z",
                    "end": "2016-08-19T18:02:00Z",
                    "duration": "PT5H58M",
                    "location": "International Space Station"
                }
            ]
        }
    ]
}