action weatherbit_get_history_energy_lat_lat_lon_lon { label: "Returns Energy API response - Given a single lat/lon. " description: "Returns aggregate energy specific historical weather fields, over a specified time period." provider: weatherbit method: GET path: "/history/energy?lat={lat}&lon={lon}" encoding: json input: { type: "object" properties: { callback: { type: "string" } end_date: { type: "string" } key: { type: "string" } lat: { type: "string" } lon: { type: "string" } start_date: { type: "string" } threshold: { type: "string" } tp: { type: "string" } units: { type: "string" } } required: ["end_date", "key", "lat", "lon", "start_date"] additionalProperties: false } output: { type: "object" additionalProperties: true } }