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&ordering=start
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=10&ordering=start",
    "previous": null,
    "results": [
        {
            "id": 5,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/5/?format=api",
            "name": "Soyuz 10",
            "start": "1971-04-23T23:54:06Z",
            "end": "1971-04-24T23:40:00Z",
            "spacestation": {
                "id": 9,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/9/?format=api",
                "name": "Salyut 1",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25201_image_20190217072508.jpeg"
            }
        },
        {
            "id": 6,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/6/?format=api",
            "name": "Soyuz 11",
            "start": "1971-06-06T04:55:09Z",
            "end": "1971-06-29T23:16:52Z",
            "spacestation": {
                "id": 9,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/9/?format=api",
                "name": "Salyut 1",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25201_image_20190217072508.jpeg"
            }
        },
        {
            "id": 2,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/2/?format=api",
            "name": "Skylab II",
            "start": "1973-05-25T13:00:00Z",
            "end": "1973-06-22T13:49:48Z",
            "spacestation": {
                "id": 6,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/6/?format=api",
                "name": "Skylab",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/skylab_image_20190215230143.jpeg"
            }
        },
        {
            "id": 3,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/3/?format=api",
            "name": "Skylab III",
            "start": "1973-07-28T11:10:50Z",
            "end": "1973-09-25T22:19:51Z",
            "spacestation": {
                "id": 6,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/6/?format=api",
                "name": "Skylab",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/skylab_image_20190215230143.jpeg"
            }
        },
        {
            "id": 4,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/4/?format=api",
            "name": "Skylab IV",
            "start": "1973-11-16T14:01:23Z",
            "end": "1974-02-08T15:16:53Z",
            "spacestation": {
                "id": 6,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/6/?format=api",
                "name": "Skylab",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/skylab_image_20190215230143.jpeg"
            }
        },
        {
            "id": 94,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/94/?format=api",
            "name": "Soyuz 14",
            "start": "1974-07-03T18:51:08Z",
            "end": "1974-07-19T12:21:36Z",
            "spacestation": {
                "id": 11,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/11/?format=api",
                "name": "Salyut 3",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25202_image_20190217082304.jpeg"
            }
        },
        {
            "id": 95,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/95/?format=api",
            "name": "Soyuz 15",
            "start": "1974-08-26T19:58:05Z",
            "end": "1974-08-28T20:10:16Z",
            "spacestation": {
                "id": 11,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/11/?format=api",
                "name": "Salyut 3",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25202_image_20190217082304.jpeg"
            }
        },
        {
            "id": 96,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/96/?format=api",
            "name": "Soyuz 17",
            "start": "1975-01-11T21:43:37Z",
            "end": "1975-02-10T11:03:22Z",
            "spacestation": {
                "id": 12,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/12/?format=api",
                "name": "Salyut 4",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25204_image_20190310081804.jpg"
            }
        },
        {
            "id": 97,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/97/?format=api",
            "name": "Soyuz 18",
            "start": "1975-05-24T14:58:10Z",
            "end": "1975-07-26T14:18:18Z",
            "spacestation": {
                "id": 12,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/12/?format=api",
                "name": "Salyut 4",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25204_image_20190310081804.jpg"
            }
        },
        {
            "id": 98,
            "url": "https://ll.thespacedevs.com/2.0.0/expedition/98/?format=api",
            "name": "Soyuz 21",
            "start": "1976-07-06T12:08:45Z",
            "end": "1976-08-24T18:32:17Z",
            "spacestation": {
                "id": 13,
                "url": "https://ll.thespacedevs.com/2.0.0/spacestation/13/?format=api",
                "name": "Salyut 5",
                "status": {
                    "id": 2,
                    "name": "De-Orbited"
                },
                "orbit": "Low Earth Orbit",
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25205_image_20190318095611.png"
            }
        }
    ]
}