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

{
    "id": 1576,
    "url": "https://lldev.thespacedevs.com/2.2.0/landings/1576/?format=api",
    "attempt": true,
    "success": true,
    "description": "The Superheavy booster No. 15 was successfully caught by the launch pad tower.",
    "downrange_distance": 0.0,
    "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": 39,
        "name": "Orbital Launch Mount A",
        "abbrev": "OLM-A",
        "description": "",
        "location": {
            "id": 143,
            "url": "https://lldev.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": 18,
            "total_landing_count": 13
        },
        "successful_landings": 3
    },
    "firststage": {
        "id": 704,
        "type": "Core",
        "reused": false,
        "launcher_flight_number": 1,
        "launcher": {
            "id": 191,
            "url": "https://lldev.thespacedevs.com/2.2.0/launcher/191/?format=api",
            "details": "Super Heavy booster used for the eighth Starship flight test.",
            "flight_proven": true,
            "serial_number": "Booster 15",
            "status": "active",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/starship_booste_image_20250221071521.jpg",
            "successful_landings": 1,
            "attempted_landings": 1,
            "flights": 1,
            "last_launch_date": "2025-03-06T23:30:00Z",
            "first_launch_date": "2025-03-06T23:30:00Z"
        },
        "previous_flight_date": null,
        "turn_around_time_days": null,
        "previous_flight": null
    },
    "spacecraftflight": null
}