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

{
    "count": 162,
    "next": null,
    "previous": "https://lldev.thespacedevs.com/2.0.0/launcher/?format=api&limit=10&offset=150&ordering=id",
    "results": [
        {
            "id": 194,
            "url": "https://lldev.thespacedevs.com/2.0.0/launcher/194/?format=api",
            "flight_proven": true,
            "serial_number": "B1094",
            "status": "active",
            "details": "Falcon 9 booster debuting on Starlink Group 12-10.",
            "launcher_config": {
                "id": 164,
                "launch_library_id": 188,
                "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/164/?format=api",
                "name": "Falcon 9",
                "family": "Falcon",
                "full_name": "Falcon 9 Block 5",
                "variant": "Block 5"
            },
            "image_url": null,
            "flights": 1,
            "last_launch_date": "2025-04-29T02:34:10Z",
            "first_launch_date": "2025-04-29T02:34:10Z"
        },
        {
            "id": 195,
            "url": "https://lldev.thespacedevs.com/2.0.0/launcher/195/?format=api",
            "flight_proven": false,
            "serial_number": "B1091",
            "status": "active",
            "details": "Planned Falcon Heavy center core stage that will first be used as a Falcon 9 first stage booster for several launches.",
            "launcher_config": {
                "id": 161,
                "launch_library_id": 58,
                "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/161/?format=api",
                "name": "Falcon Heavy",
                "family": "Falcon",
                "full_name": "Falcon Heavy",
                "variant": "Heavy"
            },
            "image_url": null,
            "flights": 0,
            "last_launch_date": null,
            "first_launch_date": null
        }
    ]
}