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": 79,
            "url": "https://ll.thespacedevs.com/2.0.0/launcher/79/?format=api",
            "flight_proven": false,
            "serial_number": "SN4",
            "status": "destroyed",
            "details": "On April 26, 2020, SN4 successfully completed a cryogenic pressure test. On May 29, 2020, SN4 exploded after engine testing.",
            "launcher_config": {
                "id": 207,
                "launch_library_id": null,
                "url": "https://ll.thespacedevs.com/2.0.0/config/launcher/207/?format=api",
                "name": "Starship Prototype",
                "family": "Starship",
                "full_name": "Starship Prototype",
                "variant": "Prototype"
            },
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/79_image_20200821075148.jpeg",
            "flights": 0,
            "last_launch_date": null,
            "first_launch_date": null
        },
        {
            "id": 98,
            "url": "https://ll.thespacedevs.com/2.0.0/launcher/98/?format=api",
            "flight_proven": false,
            "serial_number": "BN2.1",
            "status": "converted",
            "details": "Second Super Heavy prototype. Transformed into a test tank.",
            "launcher_config": {
                "id": 463,
                "launch_library_id": null,
                "url": "https://ll.thespacedevs.com/2.0.0/config/launcher/463/?format=api",
                "name": "Super Heavy Prototype",
                "family": "Starship",
                "full_name": "Super Heavy Prototype",
                "variant": "Prototype"
            },
            "image_url": null,
            "flights": 0,
            "last_launch_date": null,
            "first_launch_date": null
        }
    ]
}