Spacecraft List
API endpoint that allows Spacecrafts to be viewed. A Spacecraft is a physically manufactured instance of a Spacecraft Configuration
GET: Return a list of all the existing spacecraft.
FILTERS: Parameters - 'name', 'status', 'spacecraft_config', 'is_placeholder', 'in_space' Example - /2.2.0/spacecraft/?in_space=true
SEARCH EXAMPLE: Example - /2.2.0/spacecraft/?search=Dragon
ORDERING: Fields - 'id', 'time_in_space', 'time_docked', 'flights_count', 'mission_ends_count' Example - /2.2.0/spacecraft/?ordering=id
GET /2.2.0/spacecraft/?format=api&offset=600
{ "count": 601, "next": null, "previous": "https://ll.thespacedevs.com/2.2.0/spacecraft/?format=api&limit=10&offset=590", "results": [ { "id": 433, "url": "https://ll.thespacedevs.com/2.2.0/spacecraft/433/?format=api", "name": "Progress MS-13", "serial_number": "MS-13 (No.443)", "is_placeholder": false, "in_space": false, "time_in_space": "P215DT12H30M49S", "time_docked": "P212DT7H46M49S", "flights_count": 1, "mission_ends_count": 1, "status": { "id": 4, "name": "Single Use" }, "description": "Progress MS-13 is a Progress spacecraft used by Roscosmos to resupply the International Space Station (ISS).", "spacecraft_config": { "id": 33, "url": "https://ll.thespacedevs.com/2.2.0/config/spacecraft/33/?format=api", "name": "Progress-MS", "type": { "id": 4, "name": "Cargo Resupply" }, "agency": { "id": 63, "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api", "name": "Russian Federal Space Agency (ROSCOSMOS)", "type": "Government" }, "in_use": true, "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/progress-ms_image_20231219150735.jpeg" } } ] }