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__ids', 'launcher_config__manufacturer__name', 'is_placeholder' Example - /2.2.0/launcher/?serial_number=B1046

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

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

GET /2.2.0/launcher/?format=api&offset=170&ordering=-flight_proven
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 172,
    "next": null,
    "previous": "https://lldev.thespacedevs.com/2.2.0/launcher/?format=api&limit=10&offset=160&ordering=-flight_proven",
    "results": [
        {
            "id": 147,
            "url": "https://lldev.thespacedevs.com/2.2.0/launcher/147/?format=api",
            "flight_proven": false,
            "serial_number": "B1087",
            "is_placeholder": false,
            "status": "expended",
            "details": "Falcon Heavy core booster expended during the GOES-U mission.",
            "launcher_config": {
                "id": 161,
                "url": "https://lldev.thespacedevs.com/2.2.0/config/launcher/161/?format=api",
                "name": "Falcon Heavy",
                "family": "Falcon",
                "full_name": "Falcon Heavy",
                "variant": "Heavy"
            },
            "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/b1086_liftoff__image_20240626195956.jpeg",
            "flights": 1,
            "last_launch_date": "2024-06-25T21:26:00Z",
            "first_launch_date": "2024-06-25T21:26:00Z"
        },
        {
            "id": 236,
            "url": "https://lldev.thespacedevs.com/2.2.0/launcher/236/?format=api",
            "flight_proven": false,
            "serial_number": "T1E",
            "is_placeholder": false,
            "status": "active",
            "details": "T1E, which stands for Themis 1-Engine Evolution, is the second Themis demonstrator flight model, designed for medium-altitude hop tests at the Esrange Space Center in Sweden.",
            "launcher_config": {
                "id": 523,
                "url": "https://lldev.thespacedevs.com/2.2.0/config/launcher/523/?format=api",
                "name": "Themis Demonstrator",
                "family": "",
                "full_name": "Themis Demonstrator",
                "variant": ""
            },
            "image_url": null,
            "flights": 0,
            "last_launch_date": null,
            "first_launch_date": null
        }
    ]
}