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