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

{
    "id": 333,
    "url": "https://lldev.thespacedevs.com/2.2.0/landings/333/?format=api",
    "attempt": true,
    "success": null,
    "description": "The Falcon 9 first stage will return to Landing Zone 4 after this flight.",
    "downrange_distance": 0.4,
    "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": 7,
        "name": "Landing Zone 4",
        "abbrev": "LZ-4",
        "description": "LZ at Vandenberg",
        "location": {
            "id": 11,
            "url": "https://lldev.thespacedevs.com/2.2.0/location/11/?format=api",
            "name": "Vandenberg SFB, CA, USA",
            "country_code": "USA",
            "description": "Vandenberg Space Force Base is a United States Space Force Base in Santa Barbara County, California. Established in 1941, Vandenberg Space Force Base is a space launch base, launching spacecraft from the Western Range, and also performs missile testing. The United States Space Force's Space Launch Delta 30 serves as the host delta for the base, equivalent to an Air Force air base wing. In addition to its military space launch mission, Vandenberg Space Force Base also hosts space launches for civil and commercial space entities, such as NASA and SpaceX.",
            "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_11_20200803142416.jpg",
            "timezone_name": "America/Los_Angeles",
            "total_launch_count": 814,
            "total_landing_count": 26
        },
        "successful_landings": 26
    },
    "firststage": {
        "id": 310,
        "type": "Core",
        "reused": null,
        "launcher_flight_number": null,
        "launcher": {
            "id": 106,
            "url": "https://lldev.thespacedevs.com/2.2.0/launcher/106/?format=api",
            "details": "Booster serial number unknown.",
            "flight_proven": false,
            "serial_number": "Unknown F9",
            "status": "N/A",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/106_image_20230708172214.png",
            "successful_landings": null,
            "attempted_landings": null,
            "flights": null,
            "last_launch_date": null,
            "first_launch_date": null
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
    },
    "spacecraftflight": null
}