action weatherbit_get_forecast_daily_lat_lat_lon_lon { label: "Returns a daily forecast - Given Lat/Lon." 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?lat={lat}&lon={lon}" encoding: json input: { type: "object" properties: { callback: { type: "string" } days: { type: "string" } key: { type: "string" } lang: { type: "string" } lat: { type: "string" } lon: { type: "string" } units: { type: "string" } } required: ["key", "lat", "lon"] additionalProperties: false } output: { type: "object" additionalProperties: true } }