API endpoint that allows Docking Events to be viewed.

GET: Return a list of all the docking events.

FILTERS: Fields - 'space_station__id', 'flight_vehicle__id', 'docking_location__id'

MODE: 'detailed' EXAMPLE: ?mode=detailed

ORDERING: Fields - 'id', 'docking', 'departure' Order reverse via Docking date. Example - /2.2.0/docking_event/?ordering=-docking

GET /2.2.0/docking_event/?format=api&offset=530
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "count": 531,
  "next": null,
  "previous": "https://ll.thespacedevs.com/2.2.0/docking_event/?format=api&limit=10&offset=520",
  "results": [
    {
      "id": 637,
      "url": "https://ll.thespacedevs.com/2.2.0/docking_event/637/?format=api",
      "launch_id": "5ed6ab75-8c5b-4013-93e1-1deb56b14f1d",
      "docking": "2026-04-13T17:20:00Z",
      "departure": null,
      "flight_vehicle": {
        "id": 906,
        "url": "https://ll.thespacedevs.com/2.2.0/spacecraft/flight/906/?format=api",
        "destination": "ISS",
        "mission_end": null,
        "spacecraft": {
          "id": 626,
          "url": "https://ll.thespacedevs.com/2.2.0/spacecraft/626/?format=api",
          "name": "Cygnus CRS NG-24 (S.S. Steven R. Nagel)",
          "serial_number": null,
          "is_placeholder": false,
          "in_space": true,
          "time_in_space": "P2DT5H46M16S",
          "time_docked": "PT7M37S",
          "flights_count": 1,
          "mission_ends_count": 0,
          "status": {
            "id": 4,
            "name": "Single Use"
          },
          "description": "This is the twenty-third flight to the ISS by the Cygnus spacecraft under the CRS program and their 12th under the CRS-2 program. This is also the 19th use of the enhanced size Cygnus.",
          "spacecraft_config": {
            "id": 19,
            "url": "https://ll.thespacedevs.com/2.2.0/config/spacecraft/19/?format=api",
            "name": "Cygnus Enhanced",
            "type": {
              "id": 4,
              "name": "Cargo Resupply"
            },
            "agency": {
              "id": 257,
              "url": "https://ll.thespacedevs.com/2.2.0/agencies/257/?format=api",
              "name": "Northrop Grumman Space Systems",
              "type": "Commercial"
            },
            "in_use": true,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/cygnus2520enhanced_image_20190207032513.jpeg"
          }
        }
      },
      "docking_location": {
        "id": 1,
        "name": "Unity nadir",
        "spacestation": {
          "id": 4,
          "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
          "name": "International Space Station"
        }
      }
    }
  ]
}