Skip to main content
GET
/
api
/
user
/
videos
/
Get User Videos API Endpoint
curl --request GET \
  --url https://backend.clipvision.ai/api/user/videos/ \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "video_id": 1,
    "disabled": false,
    "video_title": "Video Title",
    "video_description": "Video Description",
    "elapsed_gen_time": 100,
    "credits_cost": 1,
    "resolution": "1920x1080",
    "creation_date": "2024-03-17T17:48:20.000Z",
    "original_input_script": "Original Input Script",
    "download_link": "https://clipvision.ai/download/video/1",
    "preview_url": "https://clipvision.ai/preview/video/1",
    "content_type": null,
    "input_video": null,
    "input_music": null,
    "input_voice": null,
    "font_profile": null,
    "media_profile": null,
    "voice_profile": null,
    "template": null,
    "playlist": null
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

content_type_id
integer
video_title
string
Minimum length: 1
resolution
string
Minimum length: 1
creation_date
string<date-time>
font_profile_id
integer
media_profile_id
integer
voice_profile_id
integer
template_id
integer

Response

Successfully retrieved the user videos

video_id
integer
disabled
boolean
video_title
string
video_description
string
elapsed_gen_time
integer
credits_cost
number
resolution
string
creation_date
string<date-time>
original_input_script
string
preview_url
string
content_type
object

Content Type OpenAPI Schema

input_video
object

InputVideo OpenAPI Schema

input_music
object

Audio OpenAPI Schema

input_voice
object

Audio OpenAPI Schema

font_profile
object

Font Profile OpenAPI Schema

media_profile
object

Media Profile OpenAPI Schema

voice_profile
object

Voice Profile OpenAPI Schema

template
object

Template OpenAPI Schema

playlist
object

Playlist OpenAPI Schema