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

{
    "id": 16,
    "url": "https://ll.thespacedevs.com/2.2.0/spacestation/16/?format=api",
    "name": "Genesis I",
    "status": {
        "id": 3,
        "name": "Decommissioned"
    },
    "type": {
        "id": 3,
        "name": "Commercial"
    },
    "founded": "2006-07-12",
    "deorbited": null,
    "height": 4.4,
    "width": 2.54,
    "mass": 1.4,
    "volume": 12,
    "description": "Genesis I is the first of two experimental inflatable space habitats. It is a one-third scale model of Bigelow Aerospace's BA330 Module.",
    "orbit": "Low Earth Orbit",
    "onboard_crew": 0,
    "docked_vehicles": 0,
    "owners": [
        {
            "id": 140,
            "url": "https://ll.thespacedevs.com/2.2.0/agencies/140/?format=api",
            "name": "Bigelow Aerospace",
            "featured": false,
            "type": "Commercial",
            "country_code": "USA",
            "abbrev": "Bigelow",
            "description": null,
            "administrator": null,
            "founding_year": null,
            "launchers": "",
            "spacecraft": "",
            "parent": null,
            "image_url": null,
            "logo_url": null
        }
    ],
    "active_expeditions": [],
    "docking_location": [],
    "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/genesis_i_image_20200221101955.jpg"
}