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

{
    "count": 181,
    "next": null,
    "previous": "https://lldev.thespacedevs.com/2.0.0/launcher/?format=api&limit=10&offset=170&ordering=id",
    "results": [
        {
            "id": 246,
            "url": "https://lldev.thespacedevs.com/2.0.0/launcher/246/?format=api",
            "flight_proven": false,
            "serial_number": "LM-12A F1",
            "status": "destroyed",
            "details": "First stage booster used on the 1st flight of CASC's Long March 12A rocket. Booster attempted to land downrange on its dedicated landing pad, but the entry-landing burn was abnormal and it impacted the ground several kilometers from the landing pad.",
            "launcher_config": {
                "id": 538,
                "launch_library_id": null,
                "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/538/?format=api",
                "name": "Long March 12A",
                "family": "Long March",
                "full_name": "Long March 12A",
                "variant": ""
            },
            "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/long_march_12a__image_20251224005749.jpg",
            "flights": 1,
            "last_launch_date": "2025-12-23T02:00:00Z",
            "first_launch_date": "2025-12-23T02:00:00Z"
        }
    ]
}