Skip to main content
GET
/
api
/
my-videos
List videos
curl --request GET \
  --url https://api-prod.nomadicml.com/api/my-videos \
  --header 'Authorization: Bearer <token>'
{
  "videos": [
    {
      "video_id": "<string>",
      "filename": "<string>",
      "status": "<string>",
      "folder_id": "<string>",
      "folder_name": "<string>",
      "created_at": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nomadicml.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <NOMADIC_API_KEY>.

Query Parameters

folder
string

Folder name to filter by.

scope
enum<string>

Folder scope.

Available options:
user,
org,
sample

Response

Successful response.

videos
object[]