action weatherbit_get_forecast_daily_city_id_city_id { label: "Returns a daily forecast - Given a City ID." description: "Returns a daily forecast, where each point represents one day (24hr) period. Every point has a datetime string in the format \"YYYY-MM-DD\". One day begins at 00:00 UTC, and ends at 23:59 UTC.\n" provider: weatherbit method: GET path: "/forecast/daily?city_id={city_id}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city_id: { type: "string" } days: { type: "string" } key: { type: "string" } lang: { type: "string" } units: { type: "string" } } required: ["city_id", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }