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

{
    "id": 1384,
    "url": "https://lldev.thespacedevs.com/2.2.0/landings/1384/?format=api",
    "attempt": true,
    "success": true,
    "description": "New Shepard has landed on Corn Ranch Landing Pad after this flight.",
    "downrange_distance": 3.2,
    "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": 28,
        "name": "Corn Ranch, West Texas",
        "abbrev": "CR",
        "description": "Blue Origin launch and landing facility located in West Texas",
        "location": {
            "id": 29,
            "url": "https://lldev.thespacedevs.com/2.2.0/location/29/?format=api",
            "name": "Corn Ranch, Van Horn, TX, USA",
            "country_code": "USA",
            "description": "Corn Ranch, commonly referred to as Launch Site One (LSO), is a spaceport owned and operated by Blue Origin which is located approximately 30 miles north of the town of Van Horn, Texas, United States.",
            "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_29_20200803142436.jpg",
            "timezone_name": "America/Chicago",
            "total_launch_count": 32,
            "total_landing_count": 32
        },
        "successful_landings": 35
    },
    "firststage": {
        "id": 550,
        "type": "Core",
        "reused": true,
        "launcher_flight_number": 11,
        "launcher": {
            "id": 90,
            "url": "https://lldev.thespacedevs.com/2.2.0/launcher/90/?format=api",
            "details": "New Shepard vehicle #4 is the fourth flight vehicle of the New Shepard suborbital rocket. It was used for Blue Origin's first crewed launches.",
            "flight_proven": true,
            "serial_number": "NS-4",
            "status": "active",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/90_image_20210412202510.jpeg",
            "successful_landings": 14,
            "attempted_landings": 14,
            "flights": 14,
            "last_launch_date": "2025-05-31T13:39:11Z",
            "first_launch_date": "2021-01-14T17:19:00Z"
        },
        "previous_flight_date": "2024-05-19T14:35:09Z",
        "turn_around_time_days": 101,
        "previous_flight": null
    },
    "spacecraftflight": null
}