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

{
    "id": 291,
    "url": "https://ll.thespacedevs.com/2.2.0/landings/291/?format=api",
    "attempt": false,
    "success": null,
    "description": "Booster 7 was expected to splash down in the Gulf of Mexico following the maiden flight of Starship, but was lost in a launch failure during ascent.",
    "downrange_distance": null,
    "landing_type": {
        "id": 3,
        "name": "Ocean",
        "abbrev": "Ocean",
        "description": "No recovery attempt"
    },
    "landing_location": {
        "id": 16,
        "name": "Gulf of Mexico",
        "abbrev": "GOM",
        "description": "Gulf of Mexico",
        "location": null,
        "successful_landings": 18
    },
    "firststage": {
        "id": 263,
        "type": "Core",
        "reused": false,
        "launcher_flight_number": 1,
        "launcher": {
            "id": 115,
            "url": "https://ll.thespacedevs.com/2.2.0/launcher/115/?format=api",
            "details": "Booster 7 is the first Super Heavy booster with 33 Raptor 2 engines and was used for the first Starship integrated flight test with Ship 24. Lost in a launch failure.",
            "flight_proven": true,
            "serial_number": "Booster 7",
            "status": "destroyed",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/115_image_20220915030149.jpeg",
            "successful_landings": 0,
            "attempted_landings": 0,
            "flights": 1,
            "last_launch_date": "2023-04-20T13:33:09Z",
            "first_launch_date": "2023-04-20T13:33:09Z"
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
    },
    "spacecraftflight": null
}