API endpoint that allows Spacecraft Configs to be viewed.

GET:
Return a list of all the existing spacecraft.

FILTERS:
Parameters - 'name', 'manufacturer', 'in_use', 'human_rated'
Example - /2.0.0/config/spacecraft/?status=Active

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

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

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

{
    "count": 41,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/?format=api&limit=10&offset=30",
    "results": [
        {
            "id": 30,
            "url": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/30/?format=api",
            "name": "X-37B",
            "agency": {
                "id": 80,
                "url": "https://ll.thespacedevs.com/2.0.0/agencies/80/?format=api",
                "name": "Boeing",
                "featured": false,
                "type": "Commercial",
                "country_code": "USA",
                "abbrev": "BA",
                "description": "Boeing as a space agency has recently provided NASA with assistance on sending humans to the ISS from American with both their construction of the CST-100 Starliner crew capsule and their work on the SLS Avionics to return to the moon and beyond. Their ventures in GPS satellite systems and Tracking and Data Relay Satellites provide information about earth-orbiting craft to stations on the ground. They also enable research on the ISS and will be helping with the construction of the Lunar Gateway.",
                "administrator": "Leanne Caret",
                "founding_year": "2002",
                "launchers": "SLS",
                "spacecraft": "Starliner",
                "parent": null,
                "image_url": null
            },
            "in_use": true,
            "capability": "It is boosted into space by a launch vehicle, then re-enters Earth's atmosphere and lands as a spaceplane. The X-37 is operated by the United States Space Force for orbital spaceflight missions intended to demonstrate reusable space technologies.",
            "maiden_flight": "2010-04-22",
            "human_rated": false,
            "crew_capacity": null,
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/x-37b_image_20221113134355.jpeg",
            "nation_url": null,
            "wiki_link": "https://en.wikipedia.org/wiki/Boeing_X-37",
            "info_link": "https://www.boeing.com/space/x37b/index.page"
        }
    ]
}