Get TikTok Creator Brand Deals

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

Returns the brands detected in a TikTok creator's sponsored content, with how often and how recently each appeared. This is a higher-cost analytics endpoint; see the quota note below.

GET/api/v1/tiktok/user/brands

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

Platform Path Family

/api/v1/{platform}/user/brands

Available Platforms

Request Parameters

Required Parameters

NameInTypeDescription
unique_idquerystringunique_id
example: nike

Optional Parameters

NameInTypeDescription
pagequeryintegerPage number
page_sizequeryintegerItems per page

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

Query Params

unique_id*
page
page_size

cURL Example

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

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"items": [
{
"brand_name": "string",
"collaboration_count": 0,
"last_collaboration_at": "string",
"engagement_rate": "string",
"total_view_count": 0,
"total_like_count": 0,
"total_comment_count": 0,
"videos": [
{
"video_id": "string",
"title": "string",
"description": "string",
"cover_url": "string",
"video_url": "string",
"publish_at": "string",
"view_count": 0,
"like_count": 0,
"comment_count": 0,
"engagement_rate": 0
}
]
}
],
"total": 0,
"page": 0,
"page_size": 0,
"total_pages": 0
}
}

Use Cases

  • Competitor conflict check — Make sure a creator has not recently promoted a direct competitor before inviting them to a campaign.
  • Experience-based shortlisting — Prioritise creators who already have a track record with brands in your category.

Related Endpoints