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

{
    "id": 1518,
    "url": "https://lldev.thespacedevs.com/2.2.0/landings/1518/?format=api",
    "attempt": true,
    "success": true,
    "description": "Firefly's Blue Ghost Mission 1 lander successfully landed on the lunar surface.",
    "downrange_distance": null,
    "landing_type": {
        "id": 9,
        "name": "Vertical Landing",
        "abbrev": "VL",
        "description": "Vertical landing using engines"
    },
    "landing_location": {
        "id": 55,
        "name": "Blue Ghost Mission 1 landing site",
        "abbrev": "BGM1",
        "description": "Landing location for Firefly's Blue Ghost Mission 1 lunar lander, near Mons Latreille in Mare Crisium.",
        "location": {
            "id": 175,
            "url": "https://lldev.thespacedevs.com/2.2.0/location/175/?format=api",
            "name": "Mare Crisium, Moon",
            "country_code": "",
            "description": "Mare Crisium is a lunar mare located in the Moon's Crisium basin, just northeast of Mare Tranquillitatis. Mare Crisium is a basin of Nectarian age.",
            "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_luna_24_landing_site252c_mare_crisium252c_moon_20240813034626.jpg",
            "timezone_name": "",
            "total_launch_count": 1,
            "total_landing_count": 0
        },
        "successful_landings": 1
    },
    "firststage": null,
    "spacecraftflight": null
}