Get TikTok Creator Videos

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

Returns a paginated list of a TikTok creator's videos from the persisted database, each with its publish time, caption and engagement counters. Ideal for building performance timelines or picking representative content.

GET/api/v1/tiktok/user/videos

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

Platform Path Family

/api/v1/{platform}/user/videos

Available Platforms

Request Parameters

Required Parameters

NameInTypeDescription
unique_idquerystringunique_id
example: nike

Optional Parameters

NameInTypeDescription
publish_at_startquerystringPublish time from
example: 2025-01-01
publish_at_endquerystringPublish time to
example: 2025-01-31
video_idquerystringVideo ID
example: 7437208265911455006
is_paidquerystringSponsored video (1 = yes)
example: 1
sort_byquerystringSort field (publish_at, view_count, engagement_rate)
example: publish_at
sort_orderquerystringSort direction (asc, desc), default desc
example: desc
pagequeryintegerPage number
page_sizequeryintegerPage size

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.itemsarray<object>Items
data.totalintegerTotal
data.pageintegerPage
data.page_sizeintegerPage Size
data.total_pagesintegerTotal Pages

Try It

https://openapi.scdata.cc/api/v1/tiktok/user/videos
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard

Query Params

unique_id*
publish_at_start
publish_at_end
video_id
is_paid
sort_by
sort_order
page
page_size

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/tiktok/user/videos?unique_id=nike" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"items": [
{
"video_id": "7508413737670413614",
"description": "Things you might experience on Fly Vini Airlines with captain @Vini Jr.: speed, samba and smiles. #NikeFootball ",
"video_url": "https://www.tiktok.com/@nike/video/7508413737670413614",
"cover_url": "https://img.scrumball.cn/tiktok/FuaboiN2W8mT6WnSCI9Qs1Ywo9LE?imageView2/2/w/300",
"duration_second": 32,
"tags": [
"nikefootball"
],
"publish_at": "2025-05-26 00:00:39",
"view_count": 188037,
"share_count": 293,
"like_count": 8058,
"comment_count": 162,
"like_rate": "0.04",
"view_follower_rate": "0.03",
"engagement_rate": "4.53",
"video_author_nickname": "Nike",
"video_author_unique_id": "nike",
"video_author_url": "https://www.tiktok.com/@nike",
"video_author_follower_count": 7393587,
"last_update_at": "2025-06-06 15:43:28"
}
],
"total": 704,
"page": 1,
"page_size": 1,
"total_pages": 704
}
}

Use Cases

  • Content performance review — Compare engagement across a creator's latest videos to see which formats and topics resonate with their audience.
  • Brand-safety screening — Scan recent captions and topics before a partnership to make sure the creator's content fits the brand.

Related Endpoints