Skip to main content
GET
/
api
/
v2
/
teams
/
{teamID}
/
stats
Get season stats for a team
curl --request GET \
  --url 'https://therundown.io/api/v2/teams/{teamID}/stats?key='
[
  {
    "team_id": 11,
    "stat_id": 1242,
    "stat": {
      "id": 1242,
      "name": "avgRebounds",
      "category": "general",
      "display_name": "Rebounds Per Game",
      "abbreviation": "REB",
      "description": "The average rebounds per game.",
      "sport_id": 4
    },
    "season_year": 2026,
    "season_type": 2,
    "season_type_name": "Regular Season",
    "value": 42.25,
    "display_value": "42.3",
    "updated_at": "2025-05-10T16:51:57Z"
  },
  {
    "team_id": 11,
    "stat_id": 1243,
    "stat": {
      "id": 1243,
      "name": "assistTurnoverRatio",
      "category": "general",
      "display_name": "Assist To Turnover Ratio",
      "abbreviation": "AST/TO",
      "description": "The average number of assists per turnover",
      "sport_id": 4
    },
    "season_year": 2026,
    "season_type": 2,
    "season_type_name": "Regular Season",
    "value": 2.26,
    "display_value": "2.3",
    "rank": 1,
    "rank_display_value": "1st",
    "updated_at": "2025-05-10T16:51:57Z"
  }
]

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)

year
integer

Season year (defaults to current year)

season_type
string
default:2

Season type ID (default 2 = regular season)

Response

200 - application/json

Team season stats

team_id
integer | null
stat_id
integer | null
stat
object
season_year
integer
season_type
integer
season_type_name
string
value
number
display_value
string
per_game_value
number
per_game_display_value
string
rank
integer
rank_display_value
string
updated_at
string<date-time> | null