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

{
    "id": 306,
    "url": "https://lldev.thespacedevs.com/2.2.0/landings/306/?format=api",
    "attempt": false,
    "success": null,
    "description": "The Falcon Heavy side booster B1064 for this launch has been expended.",
    "downrange_distance": null,
    "landing_type": {
        "id": 8,
        "name": "Expended",
        "abbrev": "EXP",
        "description": "Vehicle did not perform any landing operations after launch"
    },
    "landing_location": {
        "id": 6,
        "name": "Atlantic Ocean",
        "abbrev": "ATL",
        "description": "Atlantic Ocean",
        "location": null,
        "successful_landings": 38
    },
    "firststage": {
        "id": 278,
        "type": "Strap-On Booster",
        "reused": true,
        "launcher_flight_number": 6,
        "launcher": {
            "id": 85,
            "url": "https://lldev.thespacedevs.com/2.2.0/launcher/85/?format=api",
            "details": "Side booster paired with B1065, launched 3 USSF missions, EchoStar 24 and the Psyche mission before expended during launch of Europa Clipper.",
            "flight_proven": true,
            "serial_number": "B1064",
            "status": "expended",
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/85_image_20221102112709.jpeg",
            "successful_landings": 5,
            "attempted_landings": 5,
            "flights": 6,
            "last_launch_date": "2024-10-14T16:06:00Z",
            "first_launch_date": "2022-11-01T13:41:00Z"
        },
        "previous_flight_date": "2023-12-29T01:07:00Z",
        "turn_around_time_days": 290,
        "previous_flight": null
    },
    "spacecraftflight": null
}