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

{
    "id": 162,
    "url": "https://ll.thespacedevs.com/2.2.0/landings/162/?format=api",
    "attempt": true,
    "success": true,
    "description": "The Starship prototype successfully landed next to its launchpad after its 150m hop.",
    "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": 122,
        "type": "Core",
        "reused": false,
        "launcher_flight_number": 1,
        "launcher": {
            "id": 70,
            "url": "https://ll.thespacedevs.com/2.2.0/launcher/70/?format=api",
            "details": "Fifth prototype of the Starship prototype vehicle. On the 4th of August, SN5 completed a 150m hop, its first successful launch and landing. SN5 was scrapped in February 2021.",
            "flight_proven": true,
            "serial_number": "SN5",
            "status": "scrapped",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/70_image_20200806074407.jpeg",
            "successful_landings": 1,
            "attempted_landings": 1,
            "flights": 1,
            "last_launch_date": "2020-08-04T23:57:00Z",
            "first_launch_date": "2020-08-04T23:57:00Z"
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
    },
    "spacecraftflight": null
}