Get list of videos
Returns a set of videos by the given criteria.
Authorizations
API key for authentication.
Query Parameters
IDs of the videos to find. You can specify one or more identifiers separated by commas. Example, ?id=1,101,1001
Aggregated search condition. If set, the video list is filtered by one combined SQL criterion:
- id={s} OR slug={s} OR name like {s} i.e. "/videos?search=1000" returns list of videos where id=1000 or slug=1000 or name contains "1000".
Use it to get videos filtered by their status. Possible values:
- empty
- pending
- viewable
- ready
- error
Find videos where "client_user_id
" meta field is equal to the search value
Find videos recorded from a specific stream, so for which "stream_id
" field is equal to the search value
Restriction to return only the specified attributes, instead of the entire dataset. Specify, if you need to get short response. The following fields are available for specifying: id, name, duration, status, created_at
, updated_at
, hls_url
, screenshots, converted_videos
, priority, stream_id
. Example, ?fields=id,name,hls_url
Page number. Use it to list the paginated content
Items per page number. Use it to list the paginated content
Response
Successful
The response is of type object[]
.