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": 191,
  "next": null,
  "previous": "https://ll.thespacedevs.com/2.0.0/launcher/?format=api&limit=10&offset=180&ordering=-flight_proven",
  "results": [
    {
      "id": 252,
      "url": "https://ll.thespacedevs.com/2.0.0/launcher/252/?format=api",
      "flight_proven": false,
      "serial_number": "LM-12B F1",
      "status": "expended",
      "details": "First stage booster used on the 1st flight of CASC/CACL's Long March 12B rocket. No booster recovery was attempted, but the booster had landing legs and grid fins installed for testing of booster re-entry aerodynamic conditions.",
      "launcher_config": {
        "id": 552,
        "launch_library_id": null,
        "url": "https://ll.thespacedevs.com/2.0.0/config/launcher/552/?format=api",
        "name": "Long March 12B",
        "family": "Long March",
        "full_name": "Long March 12B",
        "variant": ""
      },
      "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/long_march_12b__image_20260601133855.jpeg",
      "flights": 1,
      "last_launch_date": "2026-06-01T08:40:00Z",
      "first_launch_date": "2026-06-01T08:40:00Z"
    }
  ]
}