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

{
    "id": 560,
    "url": "https://lldev.thespacedevs.com/2.0.0/spacecraft/560/?format=api",
    "name": "Chinese reusable experimental spacecraft",
    "serial_number": null,
    "status": {
        "id": 1,
        "name": "Active"
    },
    "description": "First Chinese reusable spacecraft",
    "spacecraft_config": {
        "id": 31,
        "url": "https://lldev.thespacedevs.com/2.0.0/config/spacecraft/31/?format=api",
        "name": "Chinese reusable spacecraft",
        "type": {
            "id": 3,
            "name": "Spaceplane"
        },
        "agency": {
            "id": 88,
            "url": "https://lldev.thespacedevs.com/2.0.0/agencies/88/?format=api",
            "name": "China Aerospace Science and Technology Corporation",
            "featured": true,
            "type": "Government",
            "country_code": "CHN",
            "abbrev": "CASC",
            "description": "The China Aerospace Science and Technology Corporation (CASC) is the main contractor for the Chinese space program. It is state-owned and has a number of subordinate entities which design, develop and manufacture a range of spacecraft, launch vehicles, strategic and tactical missile systems, and ground equipment. It was officially established in July 1999 as part of a Chinese government reform drive, having previously been one part of the former China Aerospace Corporation. Various incarnations of the program date back to 1956.",
            "administrator": "Chairman & President: Lei Fanpei",
            "founding_year": "1999",
            "launchers": "Long March",
            "spacecraft": "",
            "parent": null,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/china2520aerospace2520science2520and2520technology2520corporation_image_20191228094408.jpeg"
        },
        "in_use": true,
        "capability": "Reusable technology demonstration test bed for orbital and re-entry operations.",
        "history": "First launched on September 4, 2020 and landed two days later. Launched again on August 4, 2022.",
        "details": "The Chinese reusable experimental spacecraft is the first Chinese reusable spacecraft.",
        "maiden_flight": "2020-09-04",
        "height": null,
        "diameter": null,
        "human_rated": false,
        "crew_capacity": null,
        "payload_capacity": null,
        "flight_life": "Multiple months",
        "image_url": null,
        "nation_url": null,
        "wiki_link": "https://en.wikipedia.org/wiki/Chinese_reusable_experimental_spacecraft",
        "info_link": ""
    },
    "flights": []
}