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

{
    "id": 608,
    "url": "https://ll.thespacedevs.com/2.0.0/spacecraft/608/?format=api",
    "name": "Unknown RSS",
    "serial_number": "TBD",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "description": "The specific spacecraft for this launch is currently unknown.",
    "spacecraft_config": {
        "id": 21,
        "url": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/21/?format=api",
        "name": "Crew Capsule 2.0",
        "type": {
            "id": 2,
            "name": "Capsule"
        },
        "agency": {
            "id": 141,
            "url": "https://ll.thespacedevs.com/2.0.0/agencies/141/?format=api",
            "name": "Blue Origin",
            "featured": true,
            "type": "Commercial",
            "country_code": "USA",
            "abbrev": "BO",
            "description": "Blue Origin is an American privately funded aerospace manufacturer and spaceflight services company set up by Amazon.com founder Jeff Bezos with its headquarters in Kent, Washington. The company is developing technologies to enable private human access to space with the goal to dramatically lower costs and increase reliability. Blue Origin currently launches its New Shepard sub-orbital vehicle from its West Texas launch site, they are currently constructing a launch pad for their orbital vehicle New Glenn at Cape Canaveral LC-36.",
            "administrator": "CEO: Jeff Bezos",
            "founding_year": "2000",
            "launchers": "New Shepard | New Glenn",
            "spacecraft": "",
            "parent": null,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/blue2520origin_image_20190207032427.jpeg"
        },
        "in_use": true,
        "capability": "Crew and Cargo Flights",
        "history": "The Crew Capsule 2.0 is the newest version of Blue Origin's New Shepard rocket.",
        "details": "It is deisgned to spearate from the launcher stage below the Karman line and pursue a ballistic free flight above it before landing.",
        "maiden_flight": "2017-12-12",
        "height": null,
        "diameter": null,
        "human_rated": true,
        "crew_capacity": 6,
        "payload_capacity": null,
        "flight_life": "The capsule is designed to be reusable.",
        "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/crew2520capsule25202.0_image_20190309095011.jpeg",
        "nation_url": null,
        "wiki_link": "",
        "info_link": ""
    },
    "flights": []
}