List and Get Channels Information

Learn and practice how to retrieve a list of channels and a list of videos of a channel.

A channel is a digital space where a registered user can upload videos of different categories. In this lesson, we'll see the following endpoints of Data API related to the channel object:

  • Retrieve a list of channels: {base_url}/channels

  • Get a list of channel: {base_url}/channel/{channel_Id}

  • Get videos of a channel: {base_url}/channel/{channel_Id}/videos

The API supports the GET method for the channel object of Dailymotion.

Get the list of channels

The /channels endpoint utilizes the HTTP GET method to retrieve a list of channels.

Request parameters

This endpoint takes only optional parameters—fields ...

Parameter Name

Type

Category

Description

fields

String

Optional

This parameter defines which fields we want in the response. Its value can be:

  • created_time
  • description
  • id
  • item_type
  • name
  • slug
  • updated_time

sort

String

Optional

This parameter defines the sequence of the items in the result set. Its value can be:

  • popular
  • alpha

We apply the ...