action dev_videos { label: "Articles with a video" description: "This endpoint allows the client to retrieve a list of articles that are uploaded with a video.\n\nIt will only return published video articles ordered by descending popularity.\n\nIt supports pagination, each page will contain 24 articles by default." provider: dev method: GET path: "/api/videos" encoding: json output: { type: "array" items: { type: "object" description: "Representation of an Article with video" properties: { cloudinary_video_url: { type: "string" } id: { type: "integer" format: "int64" } path: { type: "string" } title: { type: "string" } type_of: { type: "string" } user: { type: "object" description: "Author of the article" properties: { name: { type: "string" } } } user_id: { type: "integer" format: "int64" } video_duration_in_minutes: { type: "string" } video_source_url: { type: "string" } } } } }