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

{
    "id": 11,
    "url": "https://ll.thespacedevs.com/2.2.0/spacestation/11/?format=api",
    "name": "Salyut 3",
    "status": {
        "id": 2,
        "name": "De-Orbited"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "founded": "1974-06-25",
    "deorbited": "1975-01-24",
    "height": 14.55,
    "width": 4.15,
    "mass": 18.9,
    "volume": 90,
    "description": "Salyut 3 (Russian: Салют-3; English: Salute 3; also known as OPS-2 or Almaz 2) was a Soviet space station launched on 25 June 1974. It was the second Almaz military space station, and the first such station to be launched successfully. It was included in the Salyut program to disguise its true military nature. Due to the military nature of the station, the Soviet Union was reluctant to release information about its design, and about the missions relating to the station.\r\n\r\nIt attained an altitude of 219 to 270 km on launch and NASA reported its final orbital altitude was 268 to 272 km. Only one of the three intended crews successfully boarded and manned the station, brought by Soyuz 14; Soyuz 15 attempted to bring a second crew but failed to dock.\r\n\r\nAlthough little official information has been released about the station, several sources report that it contained multiple Earth-observation cameras, as well as an on-board gun. The station was deorbited, and re-entered the atmosphere on 24 January 1975. The next space station launched by the Soviet Union was the civilian station Salyut 4; the next military station was Salyut 5, which was the final Almaz space station.",
    "orbit": "Low Earth Orbit",
    "onboard_crew": 0,
    "docked_vehicles": 0,
    "owners": [
        {
            "id": 63,
            "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
            "name": "Russian Federal Space Agency (ROSCOSMOS)",
            "featured": true,
            "type": "Government",
            "country_code": "RUS",
            "abbrev": "RFSA",
            "description": "The Roscosmos State Corporation for Space Activities, commonly known as Roscosmos, is the governmental body responsible for the space science program of the Russian Federation and general aerospace research. Soyuz has many launch locations the Russian sites are Baikonur, Plesetsk and Vostochny however Ariane also purchases the vehicle and launches it from French Guiana.",
            "administrator": "Administrator: Yuri Borisov",
            "founding_year": "1992",
            "launchers": "Soyuz",
            "spacecraft": "Soyuz",
            "parent": null,
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/russian2520federal2520space2520agency25202528roscosmos2529_image_20190207032459.jpeg",
            "logo_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/logo/russian2520federal2520space2520agency25202528roscosmos2529_logo_20190207032459.png"
        }
    ],
    "active_expeditions": [],
    "docking_location": [
        {
            "id": 26,
            "name": "Salyut-3 forward",
            "docked": null
        }
    ],
    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/salyut25202_image_20190217082304.jpeg"
}