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' Example - /2.0.0/spacecraft/?status=Active

SEARCH EXAMPLE: Example - /2.0.0/spacecraft/?search=Dragon

ORDERING: Fields - 'id' Example - /2.0.0/spacecraft/?order=id

GET /2.0.0/spacecraft/?format=api&offset=590&ordering=-id
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 591,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.0.0/spacecraft/?format=api&limit=10&offset=580&ordering=-id",
    "results": [
        {
            "id": 1,
            "url": "https://ll.thespacedevs.com/2.0.0/spacecraft/1/?format=api",
            "name": "Apollo Columbia CSM-107",
            "serial_number": "CSM-107",
            "status": {
                "id": 4,
                "name": "Single Use"
            },
            "description": "CSM-107 \"Columbia\" was an Apollo Command & Service Module used in the Apollo 11 mission.",
            "spacecraft_config": {
                "id": 10,
                "url": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/10/?format=api",
                "name": "Apollo Command/Service Module",
                "type": {
                    "id": 2,
                    "name": "Capsule"
                },
                "agency": {
                    "id": 999,
                    "url": "https://ll.thespacedevs.com/2.0.0/agencies/999/?format=api",
                    "name": "North American Aviation",
                    "type": "Commercial"
                },
                "in_use": false,
                "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/apollo2520command2fservice2520module_image_20190207032507.jpeg"
            }
        }
    ]
}