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