Modes

Levels of detail in the response - list, normal, detailed

Example - /launchers/?mode=list

Filters

Parameters - attempted_landings, attempted_landings__gt, attempted_landings__gte, attempted_landings__lt, attempted_landings__lte, first_launch_date, flight_proven, flights, flights__gt, flights__gte, flights__lt, flights__lte, id, id__contains, is_placeholder, last_launch_date, launcher_config__ids, launcher_config__manufacturer__name, launcher_config__manufacturer__name__contains, serial_number, serial_number__contains, status, successful_landings, successful_landings__gt, successful_landings__gte, successful_landings__lt, successful_landings__lte

Example - /launchers/?is_placeholder=True

Fields searched - serial_number, status__name

Example - /launchers/?search=B1048

Ordering

Fields - attempted_landings, flight_proven, flights, id, successful_landings

Example - /launchers/?ordering=-flights

Number of results

Use limit to control the number of objects in the response (max 100)

Example - /launchers/?limit=2

Format

Switch to JSON output - /launchers/?format=json

Help

Find all the FAQs and support links on the documentation homepage - ll.thespacedevs.com/docs

GET /2.3.0/launchers/234/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "response_mode": "detailed",
    "id": 234,
    "url": "https://ll.thespacedevs.com/2.3.0/launchers/234/?format=api",
    "flight_proven": false,
    "serial_number": "Booster 18",
    "is_placeholder": false,
    "status": {
        "id": 3,
        "name": "active"
    },
    "image": null,
    "details": "First Block 3 Super Heavy booster with various enhancements including Raptor 3 engines, integrated interstage and 3 grid fins instead of 4 used. Planned for usage on the 12th Starship flight test.",
    "successful_landings": 0,
    "attempted_landings": 0,
    "flights": 0,
    "last_launch_date": null,
    "first_launch_date": null,
    "fastest_turnaround": null,
    "launcher_config": {
        "response_mode": "list",
        "id": 522,
        "url": "https://ll.thespacedevs.com/2.3.0/launcher_configurations/522/?format=api",
        "name": "Starship",
        "families": [
            {
                "response_mode": "list",
                "id": 156,
                "name": "Starship"
            }
        ],
        "full_name": "Starship V3",
        "variant": "V3"
    }
}