Quick start
Method: POST
Format: application/json
Auth: token in body
Default history: 7 days
This API serves a lightweight index and a full subject payload from persisted score, social and posts tables. It does not recalculate competitive metrics during requests.
The API expects a valid token inside the JSON body. The guide is intentionally visible without authentication, but the token value itself is not exposed here. Request it from the maintainer of the deployment.
{
"token": "YOUR_TOKEN",
"function": "get",
"id_list": [101, 205, 309],
"days_of_history": 14
}
Returns the JSON contract of the API, including request rules, examples and errors.
{
"token": "YOUR_TOKEN",
"function": "help"
}
Returns a lightweight catalog of competitions and subjects with availability metadata and current score snapshot.
{
"token": "YOUR_TOKEN",
"function": "index"
}
Returns the full payload for selected subjects, including score history, social series and posts inside the requested time window.
{
"token": "YOUR_TOKEN",
"function": "get",
"id_list": [101, 205],
"days_of_history": 7
}
{
"token": "YOUR_TOKEN",
"function": "get",
"id_list": [124],
"days_of_history": 7
}
{
"status": "success",
"message": "Subjects retrieved successfully.",
"data": [
{
"subject": {
"id": 124,
"name": "Juan Perez",
"sport": "American Football",
"tournament": "NFL",
"team": "Sample Team",
"position": "Quarterback",
"competitionKey": "NFL",
"averageMentionsInRange": 42.5,
"score": {
"date": "2026-05-06",
"score": 10345.227541,
"zone": "comfort",
"tierLabel": "contender",
"percentileRank": 0.7425,
"totalFollowers": 920000,
"audienceBase": 728.44,
"multiplier": 1,
"activityDecay": 0.71,
"posts7d": 5,
"platformCount": 3,
"rankPosition": 7,
"competitorsCount": 20,
"delta1d": 112.431,
"delta7d": 531.224,
"momentumLabel": "rising"
},
"networks": {
"instagram": {
"url": "https://instagram.com/example",
"followers": 450000,
"following": 1200,
"publications": 340,
"averageMentionsInRange": 10.2
},
"tiktok": {
"url": "https://tiktok.com/@example",
"followers": 380000,
"globalLikes": 1200000,
"globalViews": 8400000,
"averageMentionsInRange": 12.4
},
"facebook": {
"url": null,
"followers": 0,
"following": 0,
"averageMentionsInRange": 8.1
},
"x": {
"url": "https://x.com/example",
"followers": 90000,
"following": 300,
"averageMentionsInRange": 11.8
}
}
},
"historyCount": 7,
"postsCount": 18,
"score": {
"latest": {
"date": "2026-05-06",
"score": 10345.227541,
"zone": "comfort",
"tierLabel": "contender",
"percentileRank": 0.7425,
"totalFollowers": 920000,
"audienceBase": 728.44,
"multiplier": 1,
"activityDecay": 0.71,
"posts7d": 5,
"platformCount": 3,
"rankPosition": 7,
"competitorsCount": 20,
"delta1d": 112.431,
"delta7d": 531.224,
"momentumLabel": "rising"
},
"series": {
"score": [
{ "x": "2026-05-04", "y": 10040.111111 },
{ "x": "2026-05-05", "y": 10232.796312 },
{ "x": "2026-05-06", "y": 10345.227541 }
],
"percentile": [
{ "x": "2026-05-04", "y": 71.1 },
{ "x": "2026-05-05", "y": 73.35 },
{ "x": "2026-05-06", "y": 74.25 }
]
}
}
}
]
}