Get TikTok Creator Videos (Realtime)

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

Fetches a creator's most recent videos straight from TikTok at request time. Use it for content published in the last hours or when the database copy is stale; realtime collection costs more quota than a database read.

GET/api/v1/tiktok/realtime/user/videos

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

Platform Path Family

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

Available Platforms

Request Parameters

Required Parameters

NameInTypeDescription
uidquerystringuid or sec_uid
example: 208464585232822272

Optional Parameters

NameInTypeDescription
regionquerystringcountry code:US,VN...
example: US
offsetquerystringoffset

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.morebooleanHas more
data.offsetstringoffset
data.videosarray<object>videos

Try It

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

Query Params

uid*
region
offset

cURL Example

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

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"more": true,
"offset": "string",
"videos": [
{
"video_id": "string",
"description": "string",
"create_at": "2019-08-24T14:15:22.123Z",
"author_uid": "string",
"author_unique_id": "string",
"author_nickname": "string",
"duration": 0,
"video_url": "string",
"cover_url": "string",
"share_count": 0,
"like_count": 0,
"comment_count": 0,
"play_count": 0,
"collect_count": 0
}
]
}
}

Use Cases

  • Campaign delivery check — Confirm that a sponsored piece went live and capture its first-hours engagement.
  • Trend spotting — Poll a set of creators for their newest videos to catch emerging topics early.

Related Endpoints