Get X Audience Age Split

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

Endpoints

Returns the share of a X creator's followers in each age bracket, derived from audience analysis. Audience insight endpoints are premium and carry a higher per-request quota cost.

GET/api/v1/audience/x/age

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

Request Parameters

Required Parameters

NameInTypeDescription
usernamequerystringX handle(username)
example: nasa

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobjectData

Try It

https://openapi.scdata.cc/api/v1/audience/x/age
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/audience/x/age?username=nasa" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"13-17": "20.04%",
"18-24": "29.06%",
"25-34": "24.27%",
"35-44": "10.16%",
"45-54": "8.28%",
"55-64": "4.62%",
"65+": "3.57%"
}
}

Use Cases

  • Demographic targeting — Keep only creators whose audience is concentrated in the age group your product serves.
  • Compliance screening — Exclude creators with a large under-age audience for age-restricted products.

Related Endpoints