action weatherbit_get_history_daily_station_station { label: "Returns Historical Observations - Given a station ID." description: "Returns Historical Observations - Given a station ID. **(LIMIT 1 year per request)**" provider: weatherbit method: GET path: "/history/daily?station={station}" encoding: json input: { type: "object" properties: { callback: { type: "string" } end_date: { type: "string" } key: { type: "string" } lang: { type: "string" } start_date: { type: "string" } station: { type: "string" } units: { type: "string" } } required: ["end_date", "key", "start_date", "station"] additionalProperties: false } output: { type: "object" additionalProperties: true } }