action weatherbit_get_forecast_daily_postal_code_postal_code { label: "Returns a daily forecast - Given a Postal Code." description: "Returns a daily forecast, where each point represents one day (24hr) period. Every point has a datetime string in the format \"YYYY-MM-DD\". One day begins at 00:00 UTC, and ends at 23:59 UTC.\n" provider: weatherbit method: GET path: "/forecast/daily?postal_code={postal_code}" encoding: json input: { type: "object" properties: { callback: { type: "string" } country: { type: "string" } days: { type: "string" } key: { type: "string" } lang: { type: "string" } postal_code: { type: "string" } units: { type: "string" } } required: ["key", "postal_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }