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

{
    "id": 98,
    "url": "https://ll.thespacedevs.com/2.2.0/config/launcher/98/?format=api",
    "name": "Titan II",
    "active": false,
    "reusable": false,
    "description": "The Titan II GLV (Gemini Launch Vehicle) or Gemini-Titan II was an American expendable launch system derived from the Titan II missile, which was used to launch twelve Gemini missions for NASA between 1964 and 1966. Two unmanned launches followed by ten manned ones were conducted from Launch Complex 19 at the Cape Canaveral Air Force Station, starting with Gemini 1 on April 8, 1964.",
    "family": "Titan",
    "full_name": "Titan II GLV",
    "manufacturer": {
        "id": 44,
        "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
        "name": "National Aeronautics and Space Administration",
        "featured": true,
        "type": "Government",
        "country_code": "USA",
        "abbrev": "NASA",
        "description": "The National Aeronautics and Space Administration is an independent agency of the executive branch of the United States federal government responsible for the civilian space program, as well as aeronautics and aerospace research. NASA have many launch facilities but most are inactive. The most commonly used pad will be LC-39B at Kennedy Space Center in Florida.",
        "administrator": "Administrator: Bill Nelson",
        "founding_year": "1958",
        "launchers": "Space Shuttle | SLS",
        "spacecraft": "Orion",
        "launch_library_url": null,
        "total_launch_count": 135,
        "consecutive_successful_launches": 11,
        "successful_launches": 115,
        "failed_launches": 20,
        "pending_launches": 6,
        "consecutive_successful_landings": 0,
        "successful_landings": 0,
        "failed_landings": 0,
        "attempted_landings": 0,
        "info_url": "http://www.nasa.gov",
        "wiki_url": "http://en.wikipedia.org/wiki/National_Aeronautics_and_Space_Administration",
        "logo_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/national2520aeronautics2520and2520space2520administration_logo_20190207032448.png",
        "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/national2520aeronautics2520and2520space2520administration_image_20190207032448.jpeg",
        "nation_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/national2520aeronautics2520and2520space2520administration_nation_20230803040809.jpg"
    },
    "program": [
        {
            "id": 3,
            "url": "https://ll.thespacedevs.com/2.2.0/program/3/?format=api",
            "name": "Gemini",
            "description": "Project Gemini was NASA's second human spaceflight program. Conducted between projects Mercury and Apollo, Gemini started in 1961 and concluded in 1966.",
            "agencies": [
                {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                }
            ],
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/project2520gem_program_20200820195350.png",
            "start_date": "1961-12-07T00:00:00Z",
            "end_date": "1966-11-15T19:21:04Z",
            "info_url": "https://www.nasa.gov/mission_pages/gemini/index.html",
            "wiki_url": "https://en.wikipedia.org/wiki/Project_Gemini",
            "mission_patches": [],
            "type": {
                "id": 2,
                "name": "Human Spaceflight"
            }
        }
    ],
    "variant": "GLV",
    "alias": "",
    "min_stage": 2,
    "max_stage": 2,
    "length": 33.2,
    "diameter": 3.05,
    "maiden_flight": "1964-04-08",
    "launch_cost": null,
    "launch_mass": 154,
    "leo_capacity": 3850,
    "gto_capacity": null,
    "to_thrust": 1913,
    "apogee": null,
    "vehicle_range": null,
    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/titan2520ii_image_20190222030027.jpeg",
    "info_url": null,
    "wiki_url": "https://en.wikipedia.org/wiki/Titan_II_GLV",
    "total_launch_count": 12,
    "consecutive_successful_launches": 12,
    "successful_launches": 12,
    "failed_launches": 0,
    "pending_launches": 0,
    "attempted_landings": 0,
    "successful_landings": 0,
    "failed_landings": 0,
    "consecutive_successful_landings": 0
}