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

{
    "count": 173,
    "next": null,
    "previous": "https://lldev.thespacedevs.com/2.0.0/launcher/?format=api&limit=10&offset=160&ordering=id",
    "results": [
        {
            "id": 236,
            "url": "https://lldev.thespacedevs.com/2.0.0/launcher/236/?format=api",
            "flight_proven": false,
            "serial_number": "T1E",
            "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,
                "launch_library_id": null,
                "url": "https://lldev.thespacedevs.com/2.0.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
        },
        {
            "id": 237,
            "url": "https://lldev.thespacedevs.com/2.0.0/launcher/237/?format=api",
            "flight_proven": false,
            "serial_number": "Callisto",
            "status": "active",
            "details": "Callisto flight model",
            "launcher_config": {
                "id": 524,
                "launch_library_id": null,
                "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/524/?format=api",
                "name": "Callisto",
                "family": "",
                "full_name": "Callisto",
                "variant": ""
            },
            "image_url": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/callisto_render_image_20250916093902.webp",
            "flights": 0,
            "last_launch_date": null,
            "first_launch_date": null
        },
        {
            "id": 238,
            "url": "https://lldev.thespacedevs.com/2.0.0/launcher/238/?format=api",
            "flight_proven": false,
            "serial_number": "GS1-SN002",
            "status": "active",
            "details": "Second New Glenn first stage booster. Named \"Never Tell Me The Odds\". Planned to be used for the second New Glenn launch with EscaPADE and then reused for the third launch with Blue Moon Pathfinder.",
            "launcher_config": {
                "id": 138,
                "launch_library_id": 1001,
                "url": "https://lldev.thespacedevs.com/2.0.0/config/launcher/138/?format=api",
                "name": "New Glenn",
                "family": "",
                "full_name": "New Glenn",
                "variant": ""
            },
            "image_url": null,
            "flights": 0,
            "last_launch_date": null,
            "first_launch_date": null
        }
    ]
}