Get YouTube Video Details (Realtime)

9 endpoints • Base: https://openapi.scdata.cc

Collects one YouTube video directly from the platform and returns its full metadata and engagement counters as of the call. Suited to tracking individual pieces of content rather than whole accounts.

GET/api/v1/youtube/realtime/video/detail

Quota usage: Each successful request to this endpoint deducts 100 quota units from your plan.

Platform Path Family

/api/v1/{platform}/realtime/video/detail

Available Platforms

Request Parameters

Required Parameters

NameInTypeDescription
video_idquerystringvideo_id
example: Sv6dMFF_yts

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.video_idstringVideo ID
data.titlestringVideo title
data.descriptionstringVideo description
data.create_atstringPublish time
data.durationstringVideo duration
data.video_urlstringVideo URL
data.channel_titlestringChannel name
data.channel_idstringChannel ID
data.video_typestringContent format (video, short)
data.category_idintegerCategory
data.captionbooleanCaptions
data.like_countintegerLike count
data.comment_countintegerComment count
data.play_countintegerPlay count

Try It

https://openapi.scdata.cc/api/v1/youtube/realtime/video/detail
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard

Query Params

video_id*

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/youtube/realtime/video/detail?video_id=Sv6dMFF_yts" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"video_id": "string",
"title": "string",
"description": "string",
"create_at": "2019-08-24T14:15:22.123Z",
"duration": "string",
"video_url": "string",
"cover_url": "string",
"channel_title": "string",
"channel_id": "string",
"video_type": "string",
"category_id": 0,
"caption": true,
"like_count": 0,
"comment_count": 0,
"play_count": 0
}
}

Use Cases

  • Sponsored content reporting — Pull the final numbers of a sponsored video for a campaign wrap-up report.
  • Viral content monitoring — Re-check a fast-growing video at intervals to measure how quickly it spreads.

Related Endpoints