API endpoint that allows Launcher instances to be viewed.

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

FILTERS: Parameters - 'id', 'serial_number', 'flight_proven', 'launcher_config', 'launcher_config__manufacturer' Example - /2.0.0/launcher/?serial_number=B1046

SEARCH EXAMPLE: /2.0.0/launcher/?search=expended Searches through serial number or status

ORDERING: Fields - 'id', 'flight_proven', Example - /2.0.0/launcher/?order=flight_proven

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

{
  "count": 191,
  "next": null,
  "previous": "https://ll.thespacedevs.com/2.0.0/launcher/?format=api&limit=10&offset=180&ordering=id",
  "results": [
    {
      "id": 256,
      "url": "https://ll.thespacedevs.com/2.0.0/launcher/256/?format=api",
      "flight_proven": false,
      "serial_number": "Booster 20",
      "status": "active",
      "details": "Second Block 3 Super Heavy booster to fly with various enhancements including Raptor 3 engines, integrated interstage and 3 grid fins instead of 4 used. To be used on the 13th Starship flight test.",
      "launcher_config": {
        "id": 522,
        "launch_library_id": null,
        "url": "https://ll.thespacedevs.com/2.0.0/config/launcher/522/?format=api",
        "name": "Starship",
        "family": "Starship",
        "full_name": "Starship V3",
        "variant": "V3"
      },
      "image_url": null,
      "flights": 0,
      "last_launch_date": null,
      "first_launch_date": null
    }
  ]
}