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

{
    "id": 1519,
    "url": "https://lldev.thespacedevs.com/2.2.0/landings/1519/?format=api",
    "attempt": true,
    "success": false,
    "description": "ispace's Hakuto-R M2 lander crashed on the lunar surface while attempting a lunar landing in Mare Frigoris.",
    "downrange_distance": null,
    "landing_type": {
        "id": 9,
        "name": "Vertical Landing",
        "abbrev": "VL",
        "description": "Vertical landing using engines"
    },
    "landing_location": {
        "id": 56,
        "name": "Hakuto-R M2 landing site",
        "abbrev": "HRM2",
        "description": "Landing site of ispace's Hakuto-R Mission 2 lunar lander.",
        "location": {
            "id": 180,
            "url": "https://lldev.thespacedevs.com/2.2.0/location/180/?format=api",
            "name": "Mare Frigoris",
            "country_code": "",
            "description": "Mare Frigoris is a lunar mare in the far north of the Moon. It is located in the outer rings of the Procellarum basin, just north of Mare Imbrium, and stretches east to north of Mare Serenitatis. It is just north of the dark crater Plato.",
            "map_image": null,
            "timezone_name": "",
            "total_launch_count": 0,
            "total_landing_count": 0
        },
        "successful_landings": 0
    },
    "firststage": null,
    "spacecraftflight": null
}