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

{
    "count": 1642,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.2.0/landings/?format=api&limit=10&offset=1630&ordering=id",
    "results": [
        {
            "id": 1764,
            "url": "https://ll.thespacedevs.com/2.2.0/landings/1764/?format=api",
            "attempt": true,
            "success": null,
            "description": "The Falcon 9 first stage B1093 will land on ASDS OCISLY after its 10th flight.",
            "downrange_distance": 574.0,
            "landing_type": {
                "id": 1,
                "name": "Autonomous Spaceport Drone Ship",
                "abbrev": "ASDS",
                "description": "An autonomous spaceport drone ship (ASDS) is an ocean-going vessel derived from a deck barge, outfitted with station-keeping engines and a large landing platform. Construction of such ships was commissioned by aerospace company SpaceX to allow for recovery of rocket first-stages at sea for high-velocity missions which do not carry enough fuel to return to the launch site after lofting spacecraft onto an orbital trajectory."
            },
            "landing_location": {
                "id": 1,
                "name": "Of Course I Still Love You",
                "abbrev": "OCISLY",
                "description": "The second ASDS barge, Of Course I Still Love You (OCISLY) services launches in the Pacific Ocean and was the site of the first landing of a SpaceX Falcon 9 first stage during CRS-8, the launch of a Dragon spacecraft to the International Space Station.",
                "location": null,
                "successful_landings": 172
            },
            "firststage": {
                "id": 869,
                "type": "Core",
                "reused": true,
                "launcher_flight_number": 10,
                "launcher": {
                    "id": 193,
                    "url": "https://ll.thespacedevs.com/2.2.0/launcher/193/?format=api",
                    "details": "Falcon 9 booster debuting on Starlink Group 11-11.",
                    "flight_proven": true,
                    "serial_number": "B1093",
                    "status": "active",
                    "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/falcon_9_on_slc_image_20250910140450.jpeg",
                    "successful_landings": 9,
                    "attempted_landings": 9,
                    "flights": 9,
                    "last_launch_date": "2025-12-14T05:49:00Z",
                    "first_launch_date": "2025-04-07T23:06:10Z"
                },
                "previous_flight_date": "2025-12-14T05:49:00Z",
                "turn_around_time_days": 38,
                "previous_flight": {
                    "id": "faf4a0bc-7dad-4842-b74c-73a9f648b5cc",
                    "name": "Falcon 9 Block 5 | Starlink Group 15-12"
                }
            },
            "spacecraftflight": null
        },
        {
            "id": 1765,
            "url": "https://ll.thespacedevs.com/2.2.0/landings/1765/?format=api",
            "attempt": true,
            "success": null,
            "description": "The Falcon 9 first stage will land on ASDS OCISLY after its flight.",
            "downrange_distance": 574.0,
            "landing_type": {
                "id": 1,
                "name": "Autonomous Spaceport Drone Ship",
                "abbrev": "ASDS",
                "description": "An autonomous spaceport drone ship (ASDS) is an ocean-going vessel derived from a deck barge, outfitted with station-keeping engines and a large landing platform. Construction of such ships was commissioned by aerospace company SpaceX to allow for recovery of rocket first-stages at sea for high-velocity missions which do not carry enough fuel to return to the launch site after lofting spacecraft onto an orbital trajectory."
            },
            "landing_location": {
                "id": 12,
                "name": "Unknown",
                "abbrev": "N/A",
                "description": null,
                "location": null,
                "successful_landings": 0
            },
            "firststage": {
                "id": 874,
                "type": "Core",
                "reused": null,
                "launcher_flight_number": null,
                "launcher": {
                    "id": 106,
                    "url": "https://ll.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
        }
    ]
}