v1

latestOpenAPI 3.0.22026-07-26114338.4 KB
Metadata

Stations

get/metadata/network/stations

Query parameters

limitinteger
Example:10000

The number of items to return.

next_cursorstring
Example:1833

A cursor value returned that can be used in a subsequent request to get the next set of data.

lat_minnumber float

The latitude of the Southwest corner of a bounding box. Required when doing a bounding box search.

lon_minnumber float

The longitude of the Southwest corner of a bounding box. Required when doing a bounding box search.

lat_maxnumber float

The latitude of the Northeast corner of a bounding box. Required when doing a bounding box search.

lon_maxnumber float

The longitude of the Northeast corner of a bounding box. Required when doing a bounding box search.

center_latnumber float

The latitude of the center point. Required when doing a center point and radius search.

center_lonnumber float

The longitude of the center point. Required when doing a center point and radius search.

radiusnumber
Example:5000

The search radius in meters. Required when doing a center point and radius search.

Response

successful operation

next_cursorstring

Cursor to be used in next request to get paged results.

Example response

{
  "stations": [
    {
      "station_id": 690,
      "station_name": "Promenade Cir",
      "elevation": 1567.65,
      "capabilities": [
        {
          "device_id": 60526,
          "capability": "air_temperature_humidity",
          "agl": 2.2,
          "environment": "outdoor"
        }
      ],
      "state": 1,
      "tz": "America/New_York"
    }
  ],
  "status": {
    "status_message": "SUCCESS"
  },
  "next_cursor": "1833"
}
All 11 operations