API endpoint that allows Landings to be viewed.

GET: Return a list of all the existing landings.

MODE: Normal, Detailed, and List /2.2.0/landings/?mode=detailed

FILTERS: Fields - 'attempt', 'success', 'landing_location__ids', 'landing_type__ids', 'spacecraft__ids', 'launcher__ids', 'spacecraft_launch__ids', 'firststage_launch__ids', 'spacecraft_config__ids', 'launcher_config__ids', 'launcher_serial_numbers'

Get all Landings with the launcher serial number of B1049. Example - /2.2.0/landings/?launcher_serial_numbers=B1049

ORDERING: Fields - 'id', 'downrange_distance' Example - /2.2.0/landings/?ordering=-downrange_distance

GET /2.2.0/landings/?format=api&offset=1720&ordering=-id
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "count": 1722,
  "next": null,
  "previous": "https://ll.thespacedevs.com/2.2.0/landings/?format=api&limit=10&offset=1710&ordering=-id",
  "results": [
    {
      "id": 39,
      "url": "https://ll.thespacedevs.com/2.2.0/landings/39/?format=api",
      "attempt": true,
      "success": false,
      "description": "Attempted to recover the first stage by parachuting it into the ocean, but it disintegrated upon reentry, again before the parachutes were deployed.",
      "downrange_distance": null,
      "landing_type": {
        "id": 4,
        "name": "Parachute Landing",
        "abbrev": "PCL",
        "description": "Unpowered landing using parachute(s)."
      },
      "landing_location": {
        "id": 6,
        "name": "Atlantic Ocean",
        "abbrev": "ATL",
        "description": "Atlantic Ocean",
        "location": null,
        "successful_landings": 38
      },
      "firststage": {
        "id": 2,
        "type": "Core",
        "reused": false,
        "launcher_flight_number": 1,
        "launcher": {
          "id": 9,
          "url": "https://ll.thespacedevs.com/2.2.0/launcher/9/?format=api",
          "details": "First flight of Dragon",
          "flight_proven": true,
          "serial_number": "B0004",
          "status": "lost",
          "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/9_image_20191115082500.jpg",
          "successful_landings": 0,
          "attempted_landings": 1,
          "flights": 1,
          "last_launch_date": "2010-12-08T15:43:00Z",
          "first_launch_date": "2010-12-08T15:43:00Z"
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
      },
      "spacecraftflight": null
    },
    {
      "id": 38,
      "url": "https://ll.thespacedevs.com/2.2.0/landings/38/?format=api",
      "attempt": true,
      "success": false,
      "description": "No parachutes were observed during descent. Apparently the Falcon 9 first stage hit the water rather hard.Observation airfcraft confirmed the debris field.",
      "downrange_distance": null,
      "landing_type": {
        "id": 4,
        "name": "Parachute Landing",
        "abbrev": "PCL",
        "description": "Unpowered landing using parachute(s)."
      },
      "landing_location": {
        "id": 6,
        "name": "Atlantic Ocean",
        "abbrev": "ATL",
        "description": "Atlantic Ocean",
        "location": null,
        "successful_landings": 38
      },
      "firststage": {
        "id": 1,
        "type": "Core",
        "reused": false,
        "launcher_flight_number": 1,
        "launcher": {
          "id": 8,
          "url": "https://ll.thespacedevs.com/2.2.0/launcher/8/?format=api",
          "details": "Stage Expended",
          "flight_proven": true,
          "serial_number": "B0003",
          "status": "expended",
          "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/8_image_20191115082425.jpg",
          "successful_landings": 0,
          "attempted_landings": 1,
          "flights": 1,
          "last_launch_date": "2010-06-04T18:45:00Z",
          "first_launch_date": "2010-06-04T18:45:00Z"
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
      },
      "spacecraftflight": null
    }
  ]
}