Skip to main content
GET
/
api
/
v2
/
teams
/
{teamID}
/
players
/
stats
Get player season stats for a team
curl --request GET \
  --url 'https://therundown.io/api/v2/teams/{teamID}/players/stats?key='
[
  {
    "player": {
      "id": 16627,
      "sport_id": 4,
      "team_id": 11,
      "first_name": "Trae",
      "last_name": "Young",
      "display_name": "Trae Young",
      "jersey": "11",
      "position": "Guard",
      "position_abbreviation": "G"
    },
    "stats": [
      {
        "player_id": 16627,
        "stat_id": 1288,
        "stat": {
          "id": 1288,
          "name": "avgRebounds",
          "display_name": "Rebounds Per Game",
          "abbreviation": "REB",
          "sport_id": 4
        },
        "season_year": 2026,
        "season_type": 2,
        "season_type_name": "Regular Season",
        "value": 3.2,
        "display_value": "3.2"
      }
    ]
  }
]

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

teamID
integer
required

Query Parameters

stats_ids
string

Comma-separated stat IDs (max 12)

player_ids
string

Comma-separated player IDs

year
integer

Season year (defaults to current year)

season_type
string
default:2

Response

200 - application/json

Player season stats

player
object
stats
object[]