API endpoint that allows stations to be viewed.

GET /api/stations/?format=api
HTTP 200 OK
Allow: GET, HEAD
Content-Type: application/json
Vary: Accept

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "slug": "kv140-sputnix-uhf",
            "lat": 62.0354,
            "lon": 129.6754,
            "status": false,
            "updated": "2022-10-06T07:25:15.860005Z",
            "telem": null
        },
        {
            "slug": "sjsa0-sputnix-uhf",
            "lat": 61.6628,
            "lon": 129.3908,
            "status": true,
            "updated": "2024-04-29T19:28:46.998346Z",
            "telem": {
                "az": 180.0,
                "el": 0.0,
                "sat": "",
                "freq": 435373226.2122438,
                "rate": 4664.271398333026,
                "range": 1929784.1956003506,
                "parked": true,
                "doppler": 6773.787756215777,
                "tracking": false,
                "correction": 1.0
            }
        }
    ]
}