action weatherbit_get_history_airquality_lat_lat_lon_lon { label: "Returns 72 hours of historical air quality conditions - Given a lat/lon." description: "Returns historical air quality conditions." provider: weatherbit method: GET path: "/history/airquality?lat={lat}&lon={lon}" encoding: json input: { type: "object" properties: { callback: { type: "string" } key: { type: "string" } lat: { type: "string" } lon: { type: "string" } } required: ["key", "lat", "lon"] additionalProperties: false } output: { type: "object" additionalProperties: true } }