action cpy_get_api_v1_videos_id_stats_overall { label: "Get overall stats of a video" provider: cpy method: GET path: "/api/v1/videos/{id}/stats/overall" encoding: json input: { type: "object" properties: { endDate: { type: "string" format: "date-time" } startDate: { type: "string" format: "date-time" } } additionalProperties: false } output: { properties: { averageWatchTime: { type: "number" } countries: { type: "array" items: { type: "object" properties: { isoCode: { type: "string" } viewers: { type: "number" } } } } totalWatchTime: { type: "number" } viewersPeak: { type: "number" } viewersPeakDate: { type: "string" format: "date-time" } } } }