Skip to main content
POST
/
api
/
dailymotion
/
channels
/dailymotion/channels
curl --request POST \
  --url https://api.anysite.io/api/dailymotion/channels \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "channel": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "DailymotionChannel",
    "alias": "<string>",
    "name": "<string>",
    "description": "<string>",
    "tagline": "<string>",
    "url": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "country": "<string>",
    "language": "<string>",
    "follower_count": 123,
    "following_count": 123,
    "video_count": 123,
    "view_count": 123,
    "is_artist": true,
    "facebook_url": "<string>",
    "twitter_url": "<string>",
    "instagram_url": "<string>",
    "pinterest_url": "<string>",
    "website_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
channel
string
required

Dailymotion channel name, ID (xid) or URL

Minimum string length: 1
Examples:

"space"

"x2okdah"

"https://www.dailymotion.com/space"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:DailymotionChannel
alias
string | null
name
string | null
description
string | null
tagline
string | null
url
string | null
image
string | null
cover
string | null
country
string | null
language
string | null
follower_count
integer | null
following_count
integer | null
video_count
integer | null
view_count
integer | null
is_artist
boolean | null
facebook_url
string | null
twitter_url
string | null
instagram_url
string | null
pinterest_url
string | null
website_url
string | null