action weatherbit_get_history_subhourly_city_city_country_country { label: "Returns Historical Observations - Given City and/or State, Country." description: "Returns Historical Observations - Given a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate." provider: weatherbit method: GET path: "/history/subhourly?city={city}&country={country}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city: { type: "string" } country: { type: "string" } end_date: { type: "string" } key: { type: "string" } lang: { type: "string" } start_date: { type: "string" } state: { type: "string" } tz: { type: "string" } units: { type: "string" } } required: ["city", "country", "end_date", "key", "start_date"] additionalProperties: false } output: { type: "object" additionalProperties: true } }