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&ordering=-name
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 42,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/?format=api&limit=10&offset=30&ordering=-name",
    "results": [
        {
            "id": 43,
            "url": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/43/?format=api",
            "name": "Apollo Lunar Module",
            "agency": {
                "id": 44,
                "url": "https://ll.thespacedevs.com/2.0.0/agencies/44/?format=api",
                "name": "National Aeronautics and Space Administration",
                "featured": true,
                "type": "Government",
                "country_code": "USA",
                "abbrev": "NASA",
                "description": "The National Aeronautics and Space Administration is an independent agency of the executive branch of the United States federal government responsible for the civilian space program, as well as aeronautics and aerospace research. NASA have many launch facilities but most are inactive. The most commonly used pad will be LC-39B at Kennedy Space Center in Florida.",
                "administrator": "Administrator: Bill Nelson",
                "founding_year": "1958",
                "launchers": "Space Shuttle | SLS",
                "spacecraft": "Orion",
                "parent": null,
                "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/national2520aeronautics2520and2520space2520administration_image_20190207032448.jpeg"
            },
            "in_use": false,
            "capability": "Landing on the Moon, Rendezvous in lunar orbit",
            "maiden_flight": "1968-01-22",
            "human_rated": true,
            "crew_capacity": 2,
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/lunar_module_on_image_20240505074251.jpeg",
            "nation_url": null,
            "wiki_link": "https://en.wikipedia.org/wiki/Apollo_Lunar_Module",
            "info_link": ""
        },
        {
            "id": 10,
            "url": "https://ll.thespacedevs.com/2.0.0/config/spacecraft/10/?format=api",
            "name": "Apollo Command/Service Module",
            "agency": {
                "id": 999,
                "url": "https://ll.thespacedevs.com/2.0.0/agencies/999/?format=api",
                "name": "North American Aviation",
                "featured": false,
                "type": "Commercial",
                "country_code": "USA",
                "abbrev": "",
                "description": "North American Aviation (NAA) was a major American aerospace manufacturer, responsible for a number of historic aircraft, including the T-6 Texan trainer, the P-51 Mustang fighter, the B-25 Mitchell bomber, the F-86 Sabre jet fighter, the X-15 rocket plane, and the XB-70, as well as Apollo command and service module, the second stage of the Saturn V rocket, the Space Shuttle orbiter and the B-1 Lancer.",
                "administrator": null,
                "founding_year": "1928",
                "launchers": "North American X-15",
                "spacecraft": "",
                "parent": "Boeing",
                "image_url": null
            },
            "in_use": false,
            "capability": "Cargo and Human Transportation to Lunar Orbit",
            "maiden_flight": "1966-02-26",
            "human_rated": true,
            "crew_capacity": 3,
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/apollo2520command2fservice2520module_image_20190207032507.jpeg",
            "nation_url": null,
            "wiki_link": "https://en.wikipedia.org/wiki/Apollo_Command/Service_Module",
            "info_link": ""
        }
    ]
}