action weatherbit_get_forecast_airquality_lat_lat_lon_lon { label: "Returns 72 hour (hourly) Air Quality forecast - Given a lat/lon." description: "Returns 72 hour (hourly) Air Quality forecast, where each point represents a one hour period." provider: weatherbit method: GET path: "/forecast/airquality?lat={lat}&lon={lon}" encoding: json input: { type: "object" properties: { callback: { type: "string" } hours: { type: "string" } key: { type: "string" } lat: { type: "string" } lon: { type: "string" } } required: ["key", "lat", "lon"] additionalProperties: false } output: { type: "object" additionalProperties: true } }