action weatherbit_get_forecast_energy_lat_lat_lon_lon { label: "Returns Energy Forecast API response - Given a single lat/lon. " description: "Retrieve an 8 day forecast relevant to te Energy Sector (degree days, solar radiation, precipitation, wind)." provider: weatherbit method: GET path: "/forecast/energy?lat={lat}&lon={lon}" encoding: json input: { type: "object" properties: { callback: { type: "string" } key: { type: "string" } lat: { type: "string" } lon: { type: "string" } threshold: { type: "string" } tp: { type: "string" } units: { type: "string" } } required: ["key", "lat", "lon"] additionalProperties: false } output: { type: "object" additionalProperties: true } }