API endpoint that allows Launcher Configurations to be viewed.

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

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

FILTERS: Fields - 'family', 'agency', 'name', 'manufacturer__name', 'full_name', 'manufacturer__launch_library_id'

Get all Launchers with the Launch Library ID of 44. Example - /2.0.0/config/launcher/?manufacturer__launch_library_id=44

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

GET /2.0.0/config/launcher/?format=api&offset=530&ordering=gto_capacity
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "count": 531,
  "next": null,
  "previous": "https://lldev.thespacedevs.com/2.0.0/config/launcher/?format=api&limit=10&offset=520&ordering=gto_capacity",
  "results": [
    {
      "id": 276,
      "launch_library_id": null,
      "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/276/?format=api",
      "name": "Delta 0900",
      "manufacturer": {
        "id": 153,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/153/?format=api",
        "name": "McDonnell Douglas",
        "featured": false,
        "type": "Commercial",
        "country_code": "USA",
        "abbrev": "MDC",
        "description": null,
        "administrator": null,
        "founding_year": null,
        "launchers": "",
        "spacecraft": "",
        "parent": null,
        "image_url": null
      },
      "program": [],
      "family": "Delta",
      "full_name": "Delta 0900",
      "variant": "0900",
      "reusable": false,
      "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/delta_0900_image_20231231081129.jpg",
      "info_url": null,
      "wiki_url": "https://en.wikipedia.org/wiki/Delta_0100"
    }
  ]
}