action weatherbit_get_forecast_hourly_city_id_city_id { label: "Returns an hourly forecast - Given a City ID." 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. \n" provider: weatherbit method: GET path: "/forecast/hourly?city_id={city_id}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city_id: { type: "string" } hours: { type: "string" } key: { type: "string" } lang: { type: "string" } units: { type: "string" } } required: ["city_id", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }