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

{
    "id": 1401,
    "url": "https://ll.thespacedevs.com/2.2.0/landings/1401/?format=api",
    "attempt": false,
    "success": null,
    "description": "",
    "downrange_distance": null,
    "landing_type": {
        "id": 7,
        "name": "Destructive Reentry",
        "abbrev": "ATM",
        "description": "Spacecraft burned up in the atmosphere"
    },
    "landing_location": null,
    "firststage": null,
    "spacecraftflight": null
}