API endpoint that allows Launcher Configurations to be viewed.

GET:
Return a list of all the existing launcher configurations.

MODE:
Normal and Detailed
/2.2.0/config/launcher/?mode=detailed

FILTERS:
Fields - 'family', 'agency', 'name', 'manufacturer__name', 'full_name', 'program', 'maiden_flight'
'total_launch_count', 'consecutive_successful_launches', 'successful_launches', 'failed_launches',
'pending_launches', 'attempted_landings', 'successful_landings', 'failed_landings',
'consecutive_successful_landings'

ORDERING:
Fields - 'name', 'launch_mass', 'leo_capacity', 'gto_capacity', 'launch_cost', 'maiden_flight',
'total_launch_count', 'consecutive_successful_launches', 'successful_launches', 'failed_launches',
'pending_launches', 'attempted_landings', 'successful_landings', 'failed_landings',
'consecutive_successful_landings'
Example - /2.2.0/config/launcher/?ordering=maiden_flight

Get all Launchers with the Agency with name NASA.
Example - /2.2.0/config/launcher/?manufacturer__name=NASA

GET /2.2.0/config/launcher/310/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 310,
    "url": "https://ll.thespacedevs.com/2.2.0/config/launcher/310/?format=api",
    "name": "Delta 8930",
    "active": false,
    "reusable": false,
    "description": "The Delta III rocket was an expendable launch vehicle made by Boeing. The first Delta III launch was on August 26, 1998.",
    "family": "Delta",
    "full_name": "Delta 8930",
    "manufacturer": {
        "id": 80,
        "url": "https://ll.thespacedevs.com/2.2.0/agencies/80/?format=api",
        "name": "Boeing",
        "featured": false,
        "type": "Commercial",
        "country_code": "USA",
        "abbrev": "BA",
        "description": "Boeing as a space agency has recently provided NASA with assistance on sending humans to the ISS from American with both their construction of the CST-100 Starliner crew capsule and their work on the SLS Avionics to return to the moon and beyond. Their ventures in GPS satellite systems and Tracking and Data Relay Satellites provide information about earth-orbiting craft to stations on the ground. They also enable research on the ISS and will be helping with the construction of the Lunar Gateway.",
        "administrator": "Leanne Caret",
        "founding_year": "2002",
        "launchers": "SLS",
        "spacecraft": "Starliner",
        "launch_library_url": null,
        "total_launch_count": 2,
        "consecutive_successful_launches": 0,
        "successful_launches": 1,
        "failed_launches": 1,
        "pending_launches": 0,
        "consecutive_successful_landings": 0,
        "successful_landings": 0,
        "failed_landings": 0,
        "attempted_landings": 0,
        "info_url": "https://www.boeing.com",
        "wiki_url": "http://en.wikipedia.org/wiki/Boeing",
        "logo_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/boeing_logo_20201128183345.png",
        "image_url": null,
        "nation_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/boeing_nation_20230804083022.jpg"
    },
    "program": [],
    "variant": "8930",
    "alias": "",
    "min_stage": 2,
    "max_stage": 2,
    "length": 35.0,
    "diameter": 4.0,
    "maiden_flight": "1998-08-26",
    "launch_cost": null,
    "launch_mass": 301,
    "leo_capacity": 8290,
    "gto_capacity": 3810,
    "to_thrust": 4889,
    "apogee": null,
    "vehicle_range": null,
    "image_url": null,
    "info_url": null,
    "wiki_url": "https://en.wikipedia.org/wiki/Delta_III",
    "total_launch_count": 3,
    "consecutive_successful_launches": 1,
    "successful_launches": 1,
    "failed_launches": 2,
    "pending_launches": 0,
    "attempted_landings": 0,
    "successful_landings": 0,
    "failed_landings": 0,
    "consecutive_successful_landings": 0
}