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

{
    "id": 51,
    "url": "https://ll.thespacedevs.com/2.2.0/landings/51/?format=api",
    "attempt": true,
    "success": false,
    "description": "B1012 landing failed due to the grid fins running out of hydraulic fluid.",
    "downrange_distance": null,
    "landing_type": {
        "id": 1,
        "name": "Autonomous Spaceport Drone Ship",
        "abbrev": "ASDS",
        "description": "An autonomous spaceport drone ship (ASDS) is an ocean-going vessel derived from a deck barge, outfitted with station-keeping engines and a large landing platform. Construction of such ships was commissioned by aerospace company SpaceX to allow for recovery of rocket first-stages at sea for high-velocity missions which do not carry enough fuel to return to the launch site after lofting spacecraft onto an orbital trajectory."
    },
    "landing_location": {
        "id": 35,
        "name": "Just Read the Instructions (Original)",
        "abbrev": "JRTI",
        "description": "1st (Marmac 300) ASDS barge, Just Read the Instructions (JRTI) was used for 2 Falcon 9 landing attempts  in the Altantic Ocean.",
        "location": null,
        "successful_landings": 0
    },
    "firststage": {
        "id": 14,
        "type": "Core",
        "reused": false,
        "launcher_flight_number": 1,
        "launcher": {
            "id": 21,
            "url": "https://ll.thespacedevs.com/2.2.0/launcher/21/?format=api",
            "details": "Destroyed on impact with droneship, grid fin hydraulic fluid depleted",
            "flight_proven": true,
            "serial_number": "B1012",
            "status": "lost",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/21_image_20190226091343.jpeg",
            "successful_landings": 0,
            "attempted_landings": 1,
            "flights": 1,
            "last_launch_date": "2015-01-10T09:47:10Z",
            "first_launch_date": "2015-01-10T09:47:10Z"
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
    },
    "spacecraftflight": null
}