List stations

Paginated list of stations. Search matches display name and location alias (case-insensitive).

Query Parameters
  • page
    Type: integer
    min:  
    1

    Page number (1-based)

  • page_size
    Type: integer
    min:  
    1
    max:  
    200

    Number of items per page

  • country_code
    Type: array string[]
    min length:  
    2
    max length:  
    2

    Repeat for each country. Matches stations in any listed country (OR).

  • network_id
    Type: array string[]

    Repeat for each network. The station must belong to at least one of them (OR).

  • search
    Type: string
    max length:  
    128

    Case-insensitive match on display name and location alias

  • sort_by
    Type: string enum

    Field to sort by

    values
    • name
    • network
    • updated_at
    • data_last_updated
  • sort_order
    Type: string enum

    Sort direction

    values
    • asc
    • desc
  • bbox
    Type: array number[] 4…4Format: double

    Bounding box to filter stations in this order [latitude_min, longitude_min, latitude_max, longitude_max] (e.g. "[10.0, 50.0, 11.0, 51.0]")

  • height_vertical_reference
    Type: string · enum

    Vertical reference for returned height (default WGS84_ELLIPSOID).

    Vertical reference for station height. WGS84_ELLIPSOID is ellipsoidal height (HAE) on the WGS 84 ellipsoid; EGM2008 is orthometric height relative to the EGM2008 geoid. Only these values are accepted.

    values
    • WGS84_ELLIPSOID
    • EGM2008
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/stations
curl https://api.skyfora.com/api/v1/stations \
  --header 'X-API-Key: YOUR_SECRET_TOKEN'
{
  "stations": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "display_name": "BTS001",
      "mountpoint": "BTS001",
      "source_type": "stream_gnss",
      "historic_data_from": "2025-11-05T00:00:00Z",
      "resolution_seconds": 30,
      "location_alias": "Helsinki",
      "country_code": "FI",
      "latitude": 60.1756,
      "longitude": 24.9458,
      "height": 10,
      "height_vertical_reference": "WGS84_ELLIPSOID",
      "data_last_updated": "2026-03-09T12:00:00Z",
      "network_id": "123e4567-e89b-12d3-a456-426614174000",
      "network_code": "string",
      "created_at": "2026-08-31T15:16:06.243Z",
      "updated_at": "2026-08-31T15:16:06.243Z"
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 1,
    "total_items": 1,
    "total_pages": 1
  }
}