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