Search⌘ K

List and Filter Videos

Explore how to list and filter videos on Dailymotion by making HTTP GET requests to the API. Learn to retrieve multiple videos with optional parameters and get detailed data for a specific video using its video ID. Understand how to apply filters, sort the video list, and extract key video information for integration or further processing.

The video object is one of the integral objects provided by Dailymotion. It behaves like a container that wraps the information about the video content available on Dailymotion. We can access this information directly or by using Data API.

In this lesson, we'll see the following endpoints of Data API related to the video object:

  • Get a list of videos: {base_url}/videos

  • Get a specific video: {base_url}/video/{video_Id}

Get a list of videos

An HTTP GET request is used to retrieve a list of videos. The /videos is appended to the base URL of Dailymotion API, which is https://api.dailymotion.com.

Request parameters

This endpoint takes no ...