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