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__abrev'
Example - /api/2.0.0/spacestation/?status=Active

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

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

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

{
    "id": 5,
    "url": "https://ll.thespacedevs.com/2.0.0/spacestation/5/?format=api",
    "name": "Mir",
    "status": {
        "id": 2,
        "name": "De-Orbited"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "founded": "1986-02-20",
    "deorbited": "2001-03-23",
    "height": 27.5,
    "width": 31.0,
    "mass": 129.7,
    "volume": 350,
    "description": "Mir was a space station that operated in low Earth orbit from 1986 to 2001, operated by the Soviet Union and later by Russia. Mir was the first modular space station and was assembled in orbit from 1986 to 1996.\r\n\r\nThe station served as a microgravity research laboratory in which crews conducted experiments in biology, human biology, physics, astronomy, meteorology and spacecraft systems with a goal of developing technologies required for permanent occupation of space.",
    "orbit": "Low Earth Orbit",
    "onboard_crew": 0,
    "owners": [
        {
            "id": 63,
            "url": "https://ll.thespacedevs.com/2.0.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"
        }
    ],
    "active_expeditions": [],
    "docking_location": [
        {
            "id": 10,
            "name": "Kristall module",
            "docked": null
        },
        {
            "id": 8,
            "name": "Kvant-2",
            "docked": null
        },
        {
            "id": 7,
            "name": "Mir-Progress 27",
            "docked": null
        },
        {
            "id": 29,
            "name": "Mir Core aft",
            "docked": null
        },
        {
            "id": 11,
            "name": "Mir SO starboard",
            "docked": null
        },
        {
            "id": 6,
            "name": "Kvant-1 aft",
            "docked": null
        },
        {
            "id": 37,
            "name": "Mir Core forward",
            "docked": null
        }
    ],
    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/mir_image_20190218204938.jpeg"
}