Skip to main content
POST
/
api
/
dailymotion
/
videos
/dailymotion/videos
curl --request POST \
  --url https://api.anysite.io/api/dailymotion/videos \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "video": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "DailymotionVideo",
    "video_title": "<string>",
    "description": "<string>",
    "duration_seconds": 123,
    "view_count": 123,
    "created_at": 123,
    "updated_at": 123,
    "aspect_ratio": 123,
    "width": 123,
    "height": 123,
    "language": "<string>",
    "audience": "<string>",
    "visibility": "<string>",
    "status": "<string>",
    "is_360": true,
    "is_exclusive": true,
    "is_ai_altered": true,
    "is_paid_partnership": true,
    "is_published": true,
    "image": "<string>",
    "tags": [],
    "hashtags": [],
    "geoblocked_allowed": [],
    "geoblocked_denied": [],
    "creator": {
      "id": "<string>",
      "@type": "DailymotionChannelBrief",
      "alias": "<string>",
      "name": "<string>",
      "url": "<string>",
      "image": "<string>",
      "follower_count": 123,
      "is_artist": true
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
video
string
required

Dailymotion video ID or URL

Minimum string length: 1
Examples:

"xalhyqe"

"https://www.dailymotion.com/video/xalhyqe"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:DailymotionVideo
video_title
string | null
description
string | null
duration_seconds
integer | null
view_count
integer | null
created_at
integer | null
updated_at
integer | null
aspect_ratio
number | null
width
integer | null
height
integer | null
language
string | null
audience
string | null
visibility
string | null
status
string | null
is_360
boolean | null
is_exclusive
boolean | null
is_ai_altered
boolean | null
is_paid_partnership
boolean | null
is_published
boolean | null
image
string | null
tags
string[]
hashtags
string[]
geoblocked_allowed
string[]
geoblocked_denied
string[]
creator
object | null