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

{
    "count": 162,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.0.0/launcher/?format=api&limit=10&offset=150&ordering=flight_proven",
    "results": [
        {
            "id": 86,
            "url": "https://ll.thespacedevs.com/2.0.0/launcher/86/?format=api",
            "flight_proven": true,
            "serial_number": "B1065",
            "status": "expended",
            "details": "Side booster paired with B1064, launched 3 USSF missions, EchoStar 24 and the Psyche mission before expended during launch of Europa Clipper.",
            "launcher_config": {
                "id": 161,
                "launch_library_id": 58,
                "url": "https://ll.thespacedevs.com/2.0.0/config/launcher/161/?format=api",
                "name": "Falcon Heavy",
                "family": "Falcon",
                "full_name": "Falcon Heavy",
                "variant": "Heavy"
            },
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/85_image_20221102112709.jpeg",
            "flights": 6,
            "last_launch_date": "2024-10-14T16:06:00Z",
            "first_launch_date": "2022-11-01T13:41:00Z"
        },
        {
            "id": 101,
            "url": "https://ll.thespacedevs.com/2.0.0/launcher/101/?format=api",
            "flight_proven": true,
            "serial_number": "B1067",
            "status": "active",
            "details": "Falcon 9 Block 5 booster first used for the CRS-22 mission.",
            "launcher_config": {
                "id": 164,
                "launch_library_id": 188,
                "url": "https://ll.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": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/b1067_on_slc-40_image_20240407145708.jpeg",
            "flights": 28,
            "last_launch_date": "2025-05-13T05:02:20Z",
            "first_launch_date": "2021-06-03T17:29:15Z"
        }
    ]
}