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/?format=api&limit=10&offset=30&ordering=-end
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 155,
    "next": "https://ll.thespacedevs.com/2.0.0/expedition/?format=api&limit=10&offset=40&ordering=-end",
    "previous": "https://ll.thespacedevs.com/2.0.0/expedition/?format=api&limit=10&offset=20&ordering=-end",
    "results": [
        {
            "id": 86,
            "url": "https://ll.thespacedevs.com/2.0.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.0.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"
            }
        },
        {
            "id": 85,
            "url": "https://ll.thespacedevs.com/2.0.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.0.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"
            }
        },
        {
            "id": 84,
            "url": "https://ll.thespacedevs.com/2.0.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.0.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"
            }
        },
        {
            "id": 123,
            "url": "https://ll.thespacedevs.com/2.0.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.0.0/spacestation/8/?format=api",
                "name": "Tiangong 2",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/tiangong25202_image_20190215013232.jpeg"
            }
        },
        {
            "id": 83,
            "url": "https://ll.thespacedevs.com/2.0.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.0.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"
            }
        },
        {
            "id": 82,
            "url": "https://ll.thespacedevs.com/2.0.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.0.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"
            }
        },
        {
            "id": 81,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/81/?format=api",
            "name": "Expedition 47",
            "start": "2016-03-02T01:02:00Z",
            "end": "2016-06-18T05:52:00Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.0.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"
            }
        },
        {
            "id": 80,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/80/?format=api",
            "name": "Expedition 46",
            "start": "2015-12-11T09:49:00Z",
            "end": "2016-03-02T01:02:00Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.0.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"
            }
        },
        {
            "id": 79,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/79/?format=api",
            "name": "Expedition 45",
            "start": "2015-09-11T21:29:00Z",
            "end": "2015-12-11T09:49:00Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.0.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"
            }
        },
        {
            "id": 78,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/78/?format=api",
            "name": "Expedition 44",
            "start": "2015-06-11T10:20:00Z",
            "end": "2015-09-11T21:29:00Z",
            "spacestation": {
                "id": 4,
                "url": "https://ll.thespacedevs.com/2.0.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"
            }
        }
    ]
}