v5

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-0112516159.5 KB

List videos

get/video/

Query parameters

collection_idstring
Example:default
page_indexinteger
countinteger
Example:50

Response

List of videos

successboolean

Example response

{
  "success": true,
  "data": {
    "videos": [
      {
        "id": "m-12345",
        "name": "video.mp4",
        "description": "Video description",
        "collection_id": "default",
        "length": 120.5,
        "size": 1048576,
        "stream_url": "https://stream.videodb.io/v/12345",
        "player_url": "https://console.videodb.io/player/12345",
        "thumbnail_url": "https://assets.videodb.io/thumb/12345.jpg"
      }
    ]
  }
}