action weatherbit_get_forecast_hourly_city_city_country_country { label: "Returns an hourly forecast - Given City and/or State, Country." description: " Returns an hourly forecast, where each point represents a one hour period. Every point has a datetime string in the format \"YYYY-MM-DD:HH\". Time is UTC. Accepts a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate.\n" provider: weatherbit method: GET path: "/forecast/hourly?city={city}&country={country}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city: { type: "string" } country: { type: "string" } hours: { type: "string" } key: { type: "string" } lang: { type: "string" } state: { type: "string" } units: { type: "string" } } required: ["city", "country", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }