Get list of videos
Fetching video list
Listing videos is done by sending a GET request to the /videos endpoint.
curl -X GET https://app.ignitevideo.cloud/api/videos \
-H "Authorization: Bearer YOUR_TOKEN"Query Parameters
For detailed information on all available operators and advanced filtering, see Querying. You can add the following URL query parameters to the request:
| Parameter | Type | Description |
|---|---|---|
page | number | The page number to fetch. |
limit | number | The number of videos to fetch per page. |
sort | string | The field to sort by. Prefix with - for descending order. |
where | object | Custom query to filter the videos. |
Example
/api/videos?page=1&limit=10&sort=-createdAtFiltering by status
A common use case is filtering videos by their processing status:
/api/videos?where[status][equals]=COMPLETEAPI Response
The response is a JSON object with the following properties:
{
"docs": [...], // Array of video objects
"totalDocs": number,
"limit": number,
"totalPages": number,
"page": number,
"pagingCounter": number,
"hasPrevPage": boolean,
"hasNextPage": boolean,
"prevPage": number | null,
"nextPage": number | null
}