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

{
  "count": 163,
  "next": "https://lldev.thespacedevs.com/2.2.0/expedition/?format=api&limit=10&offset=70&ordering=end",
  "previous": "https://lldev.thespacedevs.com/2.2.0/expedition/?format=api&limit=10&offset=50&ordering=end",
  "results": [
    {
      "id": 25,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/25/?format=api",
      "name": "Mir EO-19",
      "start": "1995-06-27T19:32:00Z",
      "end": "1995-09-11T06:52:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [],
      "spacewalks": [
        {
          "id": 102,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/102/?format=api",
          "name": "PE-19 EVA 1",
          "start": "1995-07-14T03:56:00Z",
          "end": "1995-07-14T09:30:00Z",
          "duration": "PT5H34M",
          "location": "Mir"
        },
        {
          "id": 103,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/103/?format=api",
          "name": "PE-19 EVA 2",
          "start": "1995-07-19T00:39:00Z",
          "end": "1995-07-19T03:47:00Z",
          "duration": "PT3H8M",
          "location": "Mir"
        },
        {
          "id": 104,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/104/?format=api",
          "name": "PE-19 EVA 3",
          "start": "1995-07-21T00:28:00Z",
          "end": "1995-07-21T06:18:00Z",
          "duration": "PT5H50M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 26,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/26/?format=api",
      "name": "Mir EO-20",
      "start": "1995-09-03T09:00:00Z",
      "end": "1996-02-29T10:42:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [],
      "spacewalks": [
        {
          "id": 105,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/105/?format=api",
          "name": "PE-20 EVA 1",
          "start": "1995-10-20T11:50:00Z",
          "end": "1995-10-20T17:06:00Z",
          "duration": "PT5H16M",
          "location": "Mir"
        },
        {
          "id": 106,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/106/?format=api",
          "name": "PE-20 EVA 2",
          "start": "1995-12-08T19:23:00Z",
          "end": "1995-12-08T19:52:00Z",
          "duration": "PT29M",
          "location": "Mir"
        },
        {
          "id": 107,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/107/?format=api",
          "name": "PE-20 EVA 3",
          "start": "1996-02-08T14:03:00Z",
          "end": "1996-02-08T17:08:00Z",
          "duration": "PT3H5M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 27,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/27/?format=api",
      "name": "Mir EO-21",
      "start": "1996-02-21T12:34:00Z",
      "end": "1996-09-02T07:41:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [
        {
          "id": 734,
          "name": "Mir EO-21 Patch",
          "priority": 10,
          "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/mission_patch_images/mir_eo-21_patch_20221024013533.png",
          "agency": {
            "id": 63,
            "url": "https://lldev.thespacedevs.com/2.2.0/agencies/63/?format=api",
            "name": "Russian Federal Space Agency (ROSCOSMOS)",
            "type": "Government"
          }
        }
      ],
      "spacewalks": [
        {
          "id": 111,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/111/?format=api",
          "name": "PE-21 EVA 4",
          "start": "1996-05-30T18:20:00Z",
          "end": "1996-05-30T22:40:00Z",
          "duration": "PT4H20M",
          "location": "Mir"
        },
        {
          "id": 112,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/112/?format=api",
          "name": "PE-21 EVA 5",
          "start": "1996-06-06T16:56:00Z",
          "end": "1996-06-06T20:30:00Z",
          "duration": "PT3H34M",
          "location": "Mir"
        },
        {
          "id": 113,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/113/?format=api",
          "name": "PE-21 EVA 6",
          "start": "1996-06-13T12:45:00Z",
          "end": "1996-06-13T18:27:00Z",
          "duration": "PT5H42M",
          "location": "Mir"
        },
        {
          "id": 108,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/108/?format=api",
          "name": "PE-21 EVA 1",
          "start": "1996-03-15T01:04:00Z",
          "end": "1996-03-15T06:55:00Z",
          "duration": "PT5H51M",
          "location": "Mir"
        },
        {
          "id": 109,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/109/?format=api",
          "name": "PE-21 EVA 2",
          "start": "1996-05-20T22:50:00Z",
          "end": "1996-05-21T04:10:00Z",
          "duration": "PT5H20M",
          "location": "Mir"
        },
        {
          "id": 110,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/110/?format=api",
          "name": "PE-21 EVA 3",
          "start": "1996-05-24T20:47:00Z",
          "end": "1996-05-25T02:30:00Z",
          "duration": "PT5H43M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 28,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/28/?format=api",
      "name": "Mir EO-22",
      "start": "1996-08-17T13:18:00Z",
      "end": "1997-03-02T06:44:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [],
      "spacewalks": [
        {
          "id": 114,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/114/?format=api",
          "name": "PE-22 EVA 1",
          "start": "1996-12-02T15:54:00Z",
          "end": "1996-12-02T21:51:00Z",
          "duration": "PT5H57M",
          "location": "Mir"
        },
        {
          "id": 115,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/115/?format=api",
          "name": "PE-22 EVA 2",
          "start": "1996-12-09T13:52:00Z",
          "end": "1996-12-09T20:28:00Z",
          "duration": "PT6H36M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 29,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/29/?format=api",
      "name": "Mir EO-23",
      "start": "1997-02-10T14:09:00Z",
      "end": "1997-08-14T12:17:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [],
      "spacewalks": [
        {
          "id": 116,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/116/?format=api",
          "name": "PE-23 EVA",
          "start": "1997-04-29T05:10:00Z",
          "end": "1997-04-29T10:09:00Z",
          "duration": "PT4H59M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 30,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/30/?format=api",
      "name": "Mir EO-24",
      "start": "1997-08-05T15:35:00Z",
      "end": "1998-02-19T09:10:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [
        {
          "id": 735,
          "name": "Mir EO-24 Patch",
          "priority": 10,
          "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/mission_patch_images/mir_eo-24_patch_20221024013535.png",
          "agency": {
            "id": 63,
            "url": "https://lldev.thespacedevs.com/2.2.0/agencies/63/?format=api",
            "name": "Russian Federal Space Agency (ROSCOSMOS)",
            "type": "Government"
          }
        }
      ],
      "spacewalks": [
        {
          "id": 118,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/118/?format=api",
          "name": "PE-24 EVA 2",
          "start": "1997-09-06T01:07:00Z",
          "end": "1997-09-06T07:07:00Z",
          "duration": "PT6H",
          "location": "Mir"
        },
        {
          "id": 119,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/119/?format=api",
          "name": "PE-24 EVA 3",
          "start": "1997-10-20T09:40:00Z",
          "end": "1997-10-20T16:18:00Z",
          "duration": "PT6H38M",
          "location": "Mir"
        },
        {
          "id": 117,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/117/?format=api",
          "name": "PE-24 EVA 1",
          "start": "1997-08-22T11:14:00Z",
          "end": "1997-08-22T14:30:00Z",
          "duration": "PT3H16M",
          "location": "Mir"
        },
        {
          "id": 122,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/122/?format=api",
          "name": "PE-24 EVA 6",
          "start": "1998-01-08T23:08:00Z",
          "end": "1998-01-09T02:14:00Z",
          "duration": "PT3H6M",
          "location": "Mir"
        },
        {
          "id": 120,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/120/?format=api",
          "name": "PE-24 EVA 4",
          "start": "1997-11-03T03:32:00Z",
          "end": "1997-11-03T09:36:00Z",
          "duration": "PT6H4M",
          "location": "Mir"
        },
        {
          "id": 121,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/121/?format=api",
          "name": "PE-24 EVA 5",
          "start": "1997-11-06T00:12:00Z",
          "end": "1997-11-06T06:24:00Z",
          "duration": "PT6H12M",
          "location": "Mir"
        },
        {
          "id": 123,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/123/?format=api",
          "name": "PE-24 EVA 7",
          "start": "1998-01-14T21:12:00Z",
          "end": "1998-01-15T01:04:00Z",
          "duration": "PT3H52M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 31,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/31/?format=api",
      "name": "Mir EO-25",
      "start": "1998-01-29T16:33:42Z",
      "end": "1998-08-25T05:24:44Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [],
      "spacewalks": [
        {
          "id": 124,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/124/?format=api",
          "name": "PE-25 EVA 1",
          "start": "1998-04-01T13:35:00Z",
          "end": "1998-04-01T20:15:00Z",
          "duration": "PT6H40M",
          "location": "Mir"
        },
        {
          "id": 125,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/125/?format=api",
          "name": "PE-25 EVA 2",
          "start": "1998-04-06T13:35:00Z",
          "end": "1998-04-06T17:50:00Z",
          "duration": "PT4H15M",
          "location": "Mir"
        },
        {
          "id": 126,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/126/?format=api",
          "name": "PE-25 EVA 3",
          "start": "1998-04-11T09:55:00Z",
          "end": "1998-04-11T16:20:00Z",
          "duration": "PT6H25M",
          "location": "Mir"
        },
        {
          "id": 127,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/127/?format=api",
          "name": "PE-25 EVA 4",
          "start": "1998-04-17T07:40:00Z",
          "end": "1998-04-17T14:13:00Z",
          "duration": "PT6H33M",
          "location": "Mir"
        },
        {
          "id": 128,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/128/?format=api",
          "name": "PE-25 EVA 5",
          "start": "1998-04-22T05:34:00Z",
          "end": "1998-04-22T11:55:00Z",
          "duration": "PT6H21M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 32,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/32/?format=api",
      "name": "Mir EO-26",
      "start": "1998-08-13T09:43:00Z",
      "end": "1999-02-28T02:14:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [],
      "spacewalks": [
        {
          "id": 129,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/129/?format=api",
          "name": "PE-26 EVA 1",
          "start": "1998-09-15T20:00:00Z",
          "end": "1998-09-15T20:30:00Z",
          "duration": "PT30M",
          "location": "Mir"
        },
        {
          "id": 130,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/130/?format=api",
          "name": "PE-26 EVA 2",
          "start": "1998-11-10T19:23:00Z",
          "end": "1998-11-11T01:18:00Z",
          "duration": "PT5H55M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 33,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/33/?format=api",
      "name": "Mir EO-27",
      "start": "1999-02-20T04:18:00Z",
      "end": "1999-08-28T00:34:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [],
      "spacewalks": [
        {
          "id": 131,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/131/?format=api",
          "name": "PE-27 EVA 1",
          "start": "1999-04-16T04:37:00Z",
          "end": "1999-04-16T10:56:00Z",
          "duration": "PT6H19M",
          "location": "Mir"
        },
        {
          "id": 132,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/132/?format=api",
          "name": "PE-27 EVA 2",
          "start": "1999-07-23T11:06:00Z",
          "end": "1999-07-23T17:13:00Z",
          "duration": "PT6H7M",
          "location": "Mir"
        },
        {
          "id": 133,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/133/?format=api",
          "name": "PE-27 EVA 3",
          "start": "1999-07-28T09:37:00Z",
          "end": "1999-07-28T14:59:00Z",
          "duration": "PT5H22M",
          "location": "Mir"
        }
      ]
    },
    {
      "id": 34,
      "url": "https://lldev.thespacedevs.com/2.2.0/expedition/34/?format=api",
      "name": "Mir EO-28",
      "start": "2000-04-04T05:01:00Z",
      "end": "2000-06-16T00:43:00Z",
      "spacestation": {
        "id": 5,
        "url": "https://lldev.thespacedevs.com/2.2.0/spacestation/5/?format=api",
        "name": "Mir",
        "status": {
          "id": 2,
          "name": "De-Orbited"
        },
        "orbit": "Low Earth Orbit",
        "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
      },
      "mission_patches": [
        {
          "id": 736,
          "name": "Mir EO-28 Patch",
          "priority": 10,
          "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/mission_patch_images/mir_eo-28_patch_20221024013538.png",
          "agency": {
            "id": 63,
            "url": "https://lldev.thespacedevs.com/2.2.0/agencies/63/?format=api",
            "name": "Russian Federal Space Agency (ROSCOSMOS)",
            "type": "Government"
          }
        }
      ],
      "spacewalks": [
        {
          "id": 134,
          "url": "https://lldev.thespacedevs.com/2.2.0/spacewalks/134/?format=api",
          "name": "PE-28 EVA",
          "start": "2000-05-12T10:44:00Z",
          "end": "2000-05-12T15:36:00Z",
          "duration": "PT4H52M",
          "location": "Mir"
        }
      ]
    }
  ]
}