action weatherbit_get_current_points_points { label: "Returns a group of observations given a list of points in the format (lat1, lon1), (lat2, lon2), (latN, lonN), ..." description: "Returns a group of Current Observations - Given a list of points (lat1, lon1), (lat2, lon2), (latN, lonN), ..." provider: weatherbit method: GET path: "/current?points={points}" encoding: json input: { type: "object" properties: { callback: { type: "string" } key: { type: "string" } lang: { type: "string" } points: { type: "string" } units: { type: "string" } } required: ["key", "points"] additionalProperties: false } output: { type: "object" additionalProperties: true } }