Search X Creators

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

Runs a filtered search over the X creator database and returns matching accounts with summary metrics, paginated. Combine filters to narrow down by niche, size and geography. Search requests carry a higher quota cost than single lookups.

POST/api/v1/search/x/user

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

Platform Path Family

/api/v1/search/{platform}/user

Available Platforms

Request Parameters

Required Parameters

This endpoint has no required parameters.

Optional Parameters

NameInTypeDescription
pagebodyintegerpage number
example: 0
page_sizebodyintegerpage size
example: 0
querybodyobjectSearch term
example: string
category_idsbodyobjectCreator category IDs; second- and third-level IDs may be mixed and are combined as a union; top-level categories cannot be used; at most 100
locationsbodyobjectCountry
follower_count_minbodyobjectMinimum follower count
example: 0
follower_count_maxbodyobjectMaximum follower count
example: 0
create_at_startbodyobjectPublish time from
example: string
create_at_endbodyobjectPublish time to
example: string
avg_engagement_rate_minbodyobjectMinimum average engagement rate
example: 0
avg_engagement_rate_maxbodyobjectMaximum average engagement rate
example: 0
avg_comment_count_minbodyobjectMinimum average comments
example: 0
avg_comment_count_maxbodyobjectMaximum average comments
example: 0
avg_like_count_minbodyobjectMinimum average likes
example: 0
avg_like_count_maxbodyobjectMaximum average likes
example: 0
avg_play_count_minbodyobjectMinimum average plays
example: 0
avg_play_count_maxbodyobjectMaximum average plays
example: 0
genderbodyobjectGender (0 = unknown, 1 = male, 2 = female)
example: 0
recent_month_publish_count_minbodyobjectMinimum posts in the last month
example: 0
recent_month_publish_count_maxbodyobjectMaximum posts in the last month
example: 0
has_emailbodyobjectHas contact details (1 = yes)
example: 0
languagesbodyobjectLanguage
sort_bybodyobjectSort by (relevance, follower_count, engagement_rate)
example: string
avg_engagement_count_minbodyobjectMinimum average engagement
example: 0
avg_engagement_count_maxbodyobjectMaximum average engagement
example: 0
avg_video_engagement_rate_minbodyobjectMinimum average video post engagement rate
example: 0
avg_video_engagement_rate_maxbodyobjectMaximum average video post engagement rate
example: 0
verifiedbodyobjectVerified (1 = yes)
example: 0
retweet_ratio_maxbodyobjectMaximum repost share (%)
example: 0

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

JSON Body

cURL Example

bash
curl -X POST "https://openapi.scdata.cc/api/v1/search/x/user" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"page":0,"page_size":0,"query":"string","category_ids":[0],"locations":["string"],"follower_count_min":0,"follower_count_max":0,"create_at_start":"string","create_at_end":"string","avg_engagement_rate_min":0,"avg_engagement_rate_max":0,"avg_comment_count_min":0,"avg_comment_count_max":0,"avg_like_count_min":0,"avg_like_count_max":0,"avg_play_count_min":0,"avg_play_count_max":0,"gender":0,"recent_month_publish_count_min":0,"recent_month_publish_count_max":0,"has_email":0,"languages":["string"],"sort_by":"string","avg_engagement_count_min":0,"avg_engagement_count_max":0,"avg_video_engagement_rate_min":0,"avg_video_engagement_rate_max":0,"verified":0,"retweet_ratio_max":0}'

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"items": [
{
"user_id": "string",
"username": "string",
"full_name": "string",
"avatar": "string",
"country": "string",
"gender": "string",
"follower_count": 0,
"is_verified": true,
"avg_engagement_rate": "string",
"avg_video_engagement_rate": "string",
"avg_comment_count": "string",
"avg_like_count": "string",
"avg_retweet_count": "string",
"avg_view_count": "string",
"retweet_ratio": "string",
"reply_ratio": "string",
"post_count": 0,
"video_count": 0,
"last_publish_at": "string",
"recent_month_publish_count": 0,
"recent_week_publish_count": 0,
"last_post": {
"post_id": "string",
"description": "string",
"create_at": "2019-08-24T14:15:22.123Z",
"cover_url": "string",
"like_count": 0,
"comment_count": 0,
"retweet_count": 0,
"view_count": 0
},
"evaluation_min": "string",
"evaluation_max": "string"
}
],
"total": 0,
"page": 0,
"page_size": 0,
"total_pages": 0
}
}

Use Cases

  • Campaign sourcing — Find creators in a niche and follower band that match a campaign brief from scratch.
  • Market mapping — Enumerate every notable creator in a category and region to understand the landscape.

Related Endpoints