GET
/social/players
Invite Only
Social profile data for players grouped by platform (X, Instagram). Includes handles, follower counts, and 7-day / 30-day growth deltas.
Request
cURL example
curl -H "Authorization: YOUR_API_KEY" \ "https://api.sportfeeds.com/v1/social/players?league=NBA"
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| league | enum | Yes | NFL, NCAAFB, NBA, WNBA, NCAAMB, MLB, NHL, PGA, EPL, MLS, FIFA, LALIGA, BUNDESLIGA, SERIEA, LIGUE1, UCL, SAPREMIERSHIP, CRICKET, IPL, SA20, RUGBY, URC, SUPERRUGBY, SIXNATIONS, RWC, MMA, UFC, PFL, DPWORLDTOUR, SUNSHINETOUR. |
| players | string (CSV) | No | Filter to specific player IDs. |
| id_type | enum | No | How player IDs are encoded (espn_guid recommended). |
Example Response
{
"items": [
{
"player": { "name": "LeBron James", "espn_guid": "1f6592b3-..." },
"profiles": [
{ "platform": "x", "handle": "KingJames", "followers": 53000000, "delta_7d": 12000, "delta_30d": 50000 },
{ "platform": "instagram", "handle": "kingjames", "followers": 160000000 }
]
}
]
}