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