{ "opencollection": "1.0.0", "info": { "name": "OpenWeatherMap Accumulated Parameters Stations API", "version": "2.5.0" }, "request": { "auth": { "type": "apikey", "key": "appid", "value": "{{appid}}", "placement": "query" } }, "items": [ { "info": { "name": "Stations", "type": "folder" }, "items": [ { "info": { "name": "List Registered Weather Stations", "type": "http" }, "http": { "method": "GET", "url": "https://history.openweathermap.org/data/2.5/history/stations", "params": [ { "name": "appid", "value": "", "type": "query", "description": "OpenWeather API key." } ] }, "docs": "Returns the list of all weather stations registered to the API key." }, { "info": { "name": "Register A New Weather Station", "type": "http" }, "http": { "method": "POST", "url": "https://history.openweathermap.org/data/2.5/history/stations", "params": [ { "name": "appid", "value": "", "type": "query", "description": "OpenWeather API key." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Registers a new weather station and returns the assigned station object." }, { "info": { "name": "Retrieve A Weather Station", "type": "http" }, "http": { "method": "GET", "url": "https://history.openweathermap.org/data/2.5/history/stations/:station_id", "params": [ { "name": "station_id", "value": "", "type": "path" }, { "name": "appid", "value": "", "type": "query", "description": "OpenWeather API key." } ] }, "docs": "Returns the station object for the supplied identifier." }, { "info": { "name": "Update A Weather Station", "type": "http" }, "http": { "method": "PUT", "url": "https://history.openweathermap.org/data/2.5/history/stations/:station_id", "params": [ { "name": "station_id", "value": "", "type": "path" }, { "name": "appid", "value": "", "type": "query", "description": "OpenWeather API key." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the station metadata for the supplied identifier." }, { "info": { "name": "Delete A Weather Station", "type": "http" }, "http": { "method": "DELETE", "url": "https://history.openweathermap.org/data/2.5/history/stations/:station_id", "params": [ { "name": "station_id", "value": "", "type": "path" }, { "name": "appid", "value": "", "type": "query", "description": "OpenWeather API key." } ] }, "docs": "Removes the station permanently." } ] } ], "bundled": true }