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

{
    "id": 202,
    "url": "https://ll.thespacedevs.com/2.2.0/landings/202/?format=api",
    "attempt": true,
    "success": true,
    "description": "Starship SN15 successfully landed back at the launch site after its high-altitude flight.",
    "downrange_distance": 0.15,
    "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": 14,
        "name": "SpaceX Starship Landing Pad",
        "abbrev": "LZ",
        "description": "This is the landing pad used for early Starship development flights.",
        "location": {
            "id": 143,
            "url": "https://ll.thespacedevs.com/2.2.0/location/143/?format=api",
            "name": "SpaceX Starbase, TX, USA",
            "country_code": "USA",
            "description": "Starbase is an industrial complex for Starship rockets and the headquarters of the American aerospace manufacturer company SpaceX. Located near Brownsville, Texas, United States, it has been under construction since the late 2010s by SpaceX. Starbase is composed of a spaceport near the Gulf of Mexico, a production facility at the Boca Chica village, and a small structure test site along the Texas State Highway 4.",
            "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_143_20200803142438.jpg",
            "timezone_name": "America/Chicago",
            "total_launch_count": 20,
            "total_landing_count": 13
        },
        "successful_landings": 5
    },
    "firststage": {
        "id": 171,
        "type": "Core",
        "reused": false,
        "launcher_flight_number": 1,
        "launcher": {
            "id": 94,
            "url": "https://ll.thespacedevs.com/2.2.0/launcher/94/?format=api",
            "details": "Next Starship prototype built after SN11. It features hundreds of design improvements across structures, avionics, software and engine.\r\nFirst Starship prototype to successfully land after a high altitude flight.",
            "flight_proven": true,
            "serial_number": "SN15",
            "status": "retired",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/94_image_20210511112730.jpeg",
            "successful_landings": 1,
            "attempted_landings": 1,
            "flights": 1,
            "last_launch_date": "2021-05-05T22:24:00Z",
            "first_launch_date": "2021-05-05T22:24:00Z"
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
    },
    "spacecraftflight": null
}