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

{
  "count": 192,
  "next": null,
  "previous": "https://lldev.thespacedevs.com/2.0.0/launcher/?format=api&limit=10&offset=180&ordering=-flight_proven",
  "results": [
    {
      "id": 243,
      "url": "https://lldev.thespacedevs.com/2.0.0/launcher/243/?format=api",
      "flight_proven": false,
      "serial_number": "Booster 19",
      "status": "destroyed",
      "details": "First Block 3 Super Heavy booster to fly with various enhancements including Raptor 3 engines, integrated interstage and 3 grid fins instead of 4 used. Used on the 12th Starship flight test, replacing Booster 18 written off during ground testing in November 2025. It was lost after stage separation, having completed an off-nominal boostback burn with fewer engines than planned.",
      "launcher_config": {
        "id": 522,
        "launch_library_id": null,
        "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/522/?format=api",
        "name": "Starship",
        "family": "Starship",
        "full_name": "Starship V3",
        "variant": "V3"
      },
      "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/starship_during_image_20260523090008.jpg",
      "flights": 1,
      "last_launch_date": "2026-05-22T22:30:24Z",
      "first_launch_date": "2026-05-22T22:30:24Z"
    },
    {
      "id": 93,
      "url": "https://lldev.thespacedevs.com/2.0.0/launcher/93/?format=api",
      "flight_proven": false,
      "serial_number": "BN1",
      "status": "scrapped",
      "details": "BN1 was the first Super Heavy prototype built by SpaceX in Boca Chica, TX. It was used as a production and ground operations pathfinder.",
      "launcher_config": {
        "id": 463,
        "launch_library_id": null,
        "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/463/?format=api",
        "name": "Super Heavy Prototype",
        "family": "Starship",
        "full_name": "Super Heavy Prototype",
        "variant": "Prototype"
      },
      "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/none_image_20210401104946.jpg",
      "flights": 0,
      "last_launch_date": null,
      "first_launch_date": null
    }
  ]
}