action weatherbit_get_history_daily_lat_lat_lon_lon { label: "Returns Historical Observations - Given a lat/lon." description: "Returns Historical Observations - Given a lat, and lon. **(LIMIT 1 year per request)**" provider: weatherbit method: GET path: "/history/daily?lat={lat}&lon={lon}" encoding: json input: { type: "object" properties: { callback: { type: "string" } end_date: { type: "string" } key: { type: "string" } lang: { type: "string" } lat: { type: "string" } lon: { type: "string" } start_date: { type: "string" } units: { type: "string" } } required: ["end_date", "key", "lat", "lon", "start_date"] additionalProperties: false } output: { type: "object" additionalProperties: true } }