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.0.0/docking_event/?ordering=-docking

GET /2.0.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.0.0/docking_event/?format=api&limit=10&offset=520",
  "results": [
    {
      "id": 501,
      "url": "https://ll.thespacedevs.com/2.0.0/docking_event/501/?format=api",
      "launch_id": "bc73ec4f-633e-4eb5-8b8e-5c996ea1733f",
      "docking": "2022-09-21T20:06:00Z",
      "departure": "2023-03-28T09:57:27Z",
      "flight_vehicle": {
        "id": 597,
        "url": "https://ll.thespacedevs.com/2.0.0/spacecraft/flight/597/?format=api",
        "destination": "International Space Station",
        "mission_end": "2023-03-28T11:46:00Z",
        "spacecraft": {
          "id": 459,
          "url": "https://ll.thespacedevs.com/2.0.0/spacecraft/459/?format=api",
          "name": "Soyuz MS-22",
          "serial_number": "11F732A48 #751",
          "status": {
            "id": 4,
            "name": "Single Use"
          },
          "description": "Scheduled to launch to the ISS in Fall 2022.",
          "spacecraft_config": {
            "id": 38,
            "url": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/38/?format=api",
            "name": "Soyuz MS",
            "type": {
              "id": 2,
              "name": "Capsule"
            },
            "agency": {
              "id": 63,
              "url": "https://ll.thespacedevs.com/2.0.0/agencies/63/?format=api",
              "name": "Russian Federal Space Agency (ROSCOSMOS)",
              "type": "Government"
            },
            "in_use": true,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/soyuz_ms_in_orb_image_20240313130407.jpeg"
          }
        }
      },
      "docking_location": {
        "id": 13,
        "name": "Rassvet nadir"
      }
    }
  ]
}