# Get user videos Returns the list of video assets owned by the authenticated user. These videos can be used for pre-recorded live streams, scheduling, or other video-based workflows. Endpoint: GET /streams/me/videos Version: 1.0.0 Security: bearerAuth ## Response 200 fields (application/json): - `id` (string) Example: "vd_xxxxxxxxx" - `label` (string) - `uploadName` (string) - `size` (number) - `mediaInfo` (object) - `mediaInfo.hasAudioTrack` (boolean) - `mediaInfo.duration` (number) - `mediaInfo.width` (integer) - `mediaInfo.height` (integer) - `mediaInfo.fps` (number) - `mediaInfo.codecs` (array) - `mediaInfo.codecs.type` (string) Enum: "video", "audio" - `mediaInfo.codecs.codec` (string) - `mediaInfo.tracks` (array) - `zone` (string) - `description` (string) - `createdAt` (string) - `isDisabled` (boolean) - `tags` (array) - `mediaInfoEncoded` (object) ## Response 401 fields