List stations
Paginated list of stations. Search matches display name and location alias (case-insensitive).
- Type: integerpagemin:1
Page number (1-based)
- Type: integerpage
_size min:1max:200Number of items per page
- Type: array string[]country
_code min length:2max length:2Repeat for each country. Matches stations in any listed country (OR).
- Type: array string[]network
_id Repeat for each network. The station must belong to at least one of them (OR).
- Type: stringsearchmax length:128
Case-insensitive match on display name and location alias
- Type: string enumsort
_by Field to sort by
values- name
- network
- updated
_at - data
_last _updated
- Type: string enumsort
_order Sort direction
values- asc
- desc
- Type: array number[] 4…4Format: doublebbox
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]")
- Type: string · enumheight
_vertical _reference Vertical reference for returned
height(defaultWGS84_ELLIPSOID).Vertical reference for station
height.WGS84_ELLIPSOIDis ellipsoidal height (HAE) on the WGS 84 ellipsoid;EGM2008is orthometric height relative to the EGM2008 geoid. Only these values are accepted.values- W
G S84 _ E L L I P S O I D - E
G M2008
- application/json
- application/json
- application/json
- application/json
- application/json
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
}
}