Launcher List
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=180&ordering=flight_proven
{ "count": 181, "next": null, "previous": "https://ll.thespacedevs.com/2.2.0/launcher/?format=api&limit=10&offset=170&ordering=flight_proven", "results": [ { "id": 23, "url": "https://ll.thespacedevs.com/2.2.0/launcher/23/?format=api", "flight_proven": true, "serial_number": "B1014", "is_placeholder": false, "status": "lost", "details": "", "launcher_config": { "id": 14, "url": "https://ll.thespacedevs.com/2.2.0/config/launcher/14/?format=api", "name": "Falcon 9", "family": "Falcon", "full_name": "Falcon 9 v1.1", "variant": "v1.1" }, "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/23_image_20190226091459.jpeg", "flights": 1, "last_launch_date": "2015-03-02T03:50:00Z", "first_launch_date": "2015-03-02T03:50:00Z" } ] }