API endpoint that allows Space Stations to be viewed.

GET:
Return a list of all the existing space stations.

FILTERS:
Parameters - 'name', 'status', 'owners', 'orbit', 'type', 'owners__name', 'owners__abbrev'
Example - /api/2.2.0/spacestation/?status=Active

SEARCH EXAMPLE:
Example - /api/2.2.0/spacestation/?search=ISS
Searches through 'name', 'owners__name', 'owners__abbrev'

ORDERING:
Fields - 'id', 'name', status', 'type', 'founded', 'volume'
Example - /api/2.2.0/spacestation/?ordering=id

GET /2.2.0/spacestation/8/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 8,
    "url": "https://ll.thespacedevs.com/2.2.0/spacestation/8/?format=api",
    "name": "Tiangong 2",
    "status": {
        "id": 2,
        "name": "De-Orbited"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "founded": "2016-09-15",
    "deorbited": "2019-07-19",
    "height": 10.4,
    "width": 3.35,
    "mass": 9.5,
    "volume": 14,
    "description": "Tiangong-2 (Chinese: 天宫二号; pinyin: Tiāngōng èrhào; literally: \"Celestial Palace 2\") is a Chinese space laboratory and part of the Project 921-2 space station program. Tiangong-2 was launched on 15 September 2016.\r\n\r\nTiangong-2 is neither designed nor planned to be a permanent orbital station; rather, it is intended as a testbed for key technologies that will be used in the Chinese large modular space station, which is planned for launch between 2019 and 2022.",
    "orbit": "Low Earth Orbit",
    "onboard_crew": 0,
    "docked_vehicles": 0,
    "owners": [
        {
            "id": 17,
            "url": "https://ll.thespacedevs.com/2.2.0/agencies/17/?format=api",
            "name": "China National Space Administration",
            "featured": true,
            "type": "Government",
            "country_code": "CHN",
            "abbrev": "CNSA",
            "description": "The China National Space Administration (CNSA) is the national space agency of the People's Republic of China. It is responsible for the national space program and for planning and development of space activities. CNSA and China Aerospace Corporation (CASC) assumed the authority over space development efforts previously held by the Ministry of Aerospace Industry. The CNSA has many launch sites around China with their orbital sites located in Jiuquan, Xichang, Taiyuan and Wenchang.",
            "administrator": "Administrator: Tang Dengjie",
            "founding_year": "1993",
            "launchers": "",
            "spacecraft": "Shenzhou",
            "parent": null,
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/china2520national2520space2520administration_image_20190207032431.jpeg",
            "logo_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/logo/china2520national2520space2520administration_logo_20190207032431.png"
        }
    ],
    "active_expeditions": [],
    "docking_location": [
        {
            "id": 31,
            "name": "Tiangong-2 forward",
            "docked": null
        }
    ],
    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/tiangong25202_image_20190215013232.jpeg"
}