Get TikTok Creator Livestreams

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

Returns the live shopping sessions a TikTok creator has hosted, with audience and sales figures for each. A premium commerce endpoint with a higher quota cost.

GET/api/v1/tiktok/user/shop/live/list

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

Request Parameters

Required Parameters

NameInTypeDescription
unique_idquerystringunique_id
example: popmart.usshop

Optional Parameters

NameInTypeDescription
sort_fieldquerystringSort field: live_revenue_amount, live_view_count, live_price, live_revenue_per_thousand
sort_typequerystringSort order: asc = ascending, desc = descending
pagequeryintegerPage number

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/shop/live/list
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard

Query Params

unique_id*
sort_field
sort_type
page

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/tiktok/user/shop/live/list?unique_id=popmart.usshop" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"items": [
{
"live_name": "SKULLPANDA Launch!",
"live_cover_url": "https://d3uucz7wx6jq40.cloudfront.net/tiktok.live/7541145940804029239/cover.png",
"live_start_time": "08/22 05:00",
"live_end_time": "08/22 17:08",
"live_duration": "12.1h",
"live_revenue_amount": "405921.55",
"live_view_count": 1647040,
"live_price": "43.76",
"live_revenue_per_thousand": "246.45"
}
],
"total": 35,
"page": 1,
"page_size": 10,
"total_pages": 4
}
}

Use Cases

  • Live host selection — Pick creators with consistent live audiences for a live-commerce event.
  • Live performance benchmarks — Set realistic sales targets from a creator's past stream results.

Related Endpoints