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/72/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "id": 72,
  "url": "https://ll.thespacedevs.com/2.2.0/landings/72/?format=api",
  "attempt": true,
  "success": true,
  "description": "The first stage of the Falcon 9 rocket landed at LZ-1.",
  "downrange_distance": 14.9,
  "landing_type": {
    "id": 2,
    "name": "Return to Launch Site",
    "abbrev": "RTLS",
    "description": "A return to launch site usually means that after stage separation the booster flips and does a burn back towards the launch site, landing near where it initially launched from."
  },
  "landing_location": {
    "id": 4,
    "name": "Landing Zone 1",
    "abbrev": "LZ-1",
    "description": "LZ-1 Pad located at Cape Canaveral Space Force Station at the previous LC-13.",
    "location": {
      "id": 12,
      "url": "https://ll.thespacedevs.com/2.2.0/location/12/?format=api",
      "name": "Cape Canaveral SFS, FL, USA",
      "country_code": "USA",
      "description": "Cape Canaveral Space Force Station (CCSFS) is an installation of the United States Space Force's Space Launch Delta 45, located on Cape Canaveral in Brevard County, Florida.",
      "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_12_20200803142519.jpg",
      "timezone_name": "America/New_York",
      "total_launch_count": 1114,
      "total_landing_count": 75
    },
    "successful_landings": 53
  },
  "firststage": {
    "id": 34,
    "type": "Core",
    "reused": false,
    "launcher_flight_number": 1,
    "launcher": {
      "id": 40,
      "url": "https://ll.thespacedevs.com/2.2.0/launcher/40/?format=api",
      "details": "Survived water landing on a non-recovery launch, SpaceX couldn't tug it back to port, so they hired a company to destroy it.",
      "flight_proven": true,
      "serial_number": "B1032",
      "status": "expended",
      "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/40_image_20190226083004.jpeg",
      "successful_landings": 1,
      "attempted_landings": 1,
      "flights": 2,
      "last_launch_date": "2018-01-31T21:25:00Z",
      "first_launch_date": "2017-05-01T11:15:00Z"
    },
    "previous_flight_date": null,
    "turn_around_time_days": null,
    "previous_flight": null
  },
  "spacecraftflight": null
}