action weatherbit_get_forecast_daily_city_city_country_country { label: "Returns a daily forecast - Given City and/or State, Country." 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. Accepts a city in the format of City,ST or City. The state, and country parameters can be provided to make the search more accurate.\n" provider: weatherbit method: GET path: "/forecast/daily?city={city}&country={country}" encoding: json input: { type: "object" properties: { callback: { type: "string" } city: { type: "string" } country: { type: "string" } days: { type: "string" } key: { type: "string" } lang: { type: "string" } state: { type: "string" } units: { type: "string" } } required: ["city", "country", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }