Find Similar X Creators

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

Given one X creator, returns a ranked list of accounts with a comparable audience, size and content style, each with a similarity score and summary metrics. Higher quota cost than a plain profile read.

GET/api/v1/x/user/similar

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

Platform Path Family

/api/v1/{platform}/user/similar

Available Platforms

Request Parameters

Required Parameters

NameInTypeDescription
usernamequerystringX handle
example: elonmusk

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataarray<object>Data
data[].usernamestringAccount name
data[].nicknamestringAccount nickname
data[].avatarstringAccount avatar URL
data[].descriptionstringAccount bio
data[].follower_countintegerFollower count

Try It

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

Query Params

username*

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/x/user/similar?username=elonmusk" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": [
{
"username": "SpaceX",
"nickname": "SpaceX",
"avatar": "https://img-us.scrumball.ai/twitter/34743251/avatar/xxx.jpg",
"description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft",
"follower_count": 41900588
},
{
"username": "NASA",
"nickname": "NASA",
"avatar": "https://img-us.scrumball.ai/twitter/11348282/avatar/xxx.jpg",
"description": "Explore the universe and discover our home planet.",
"follower_count": 92384026
}
]
}

Use Cases

  • Lookalike sourcing — Start from a creator who performed well and find others who reach the same kind of audience.
  • Budget-tier alternatives — Find smaller creators in the same niche when a headline creator is over budget.

Related Endpoints