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.
/api/v1/tiktok/realtime/user/videosQuota usage: Each successful request to this endpoint deducts 100 quota units from your plan.
Platform Path Family
/api/v1/{platform}/realtime/user/videosAvailable Platforms
Request Parameters
Required Parameters
| Name | In | Type | Description |
|---|---|---|---|
uid | query | string | uid or sec_uid example: 208464585232822272 |
Optional Parameters
| Name | In | Type | Description |
|---|---|---|---|
region | query | string | country code:US,VN... example: US |
offset | query | string | offset |
Response Fields
| Name | Type | Description |
|---|---|---|
success | boolean | Success |
code | integer | Code |
message | string | Message |
data | object | - |
data.more | boolean | Has more |
data.offset | string | offset |
data.videos | array<object> | videos |
Try It
Query Params
uid*regionoffsetcURL Example
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)
{"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.