Integration GuidesReference Docs
Coverage MatrixDocumentationChange LogLog InContact Us
Integration Guides

Playoffs

This guide will walk you through fetching playoff schedules, including how to access games as they become available, analyzing matchup behavior, and constructing a playoff bracket.

Introduction to Playoffs

The NBA playoffs are a postseason tournament where teams from the Eastern and Western Conferences compete in a best-of-seven series format. Teams must win four out of seven games to advance, with each round (First Round, Conference Semifinals, Conference Finals, and the NBA Finals) eliminating the losing team. The tournament continues until the two conference champions face off in the NBA Finals to determine the league champion.

You can access playoff data using these feeds:

  1. You can use the PIT parameter of the Schedule feed to access the Play-In Tournament Schedule. The Play-In Tournament is used to determine the 7th and 8th seeds for each conference’s playoff bracket. For example:
    https://api.sportradar.com/nba/production/v8/en/games/2023/PIT/schedule.xml?api=
  2. The Series Schedule endpoint provides playoff participant information as well as the date, time, location, and other event details for every match-up taking place for the entire playoffs.
  3. Finally the Series Statistics endpoint returns detailed team and player statistics for a given playoff series.


Prerequisite - Accessing Available Seasons

To avoid confusion and ensure you're accessing available data, refer to our Seasons feed. This resource lists all the seasons for which we have data.

For example: To ensure data availability for future seasons, such as a schedule in advance of when a season begins, first check the Seasons feed to verify that data for that specific season is already provided.

Starting with this feed can prevent unnecessary errors and streamline your data retrieval process.

📆

Starting Year for Each Season

It's important to note that the season parameter uses the starting year of the season; for example, to retrieve data for the 2024-25 NBA season, you would use 2024 as the value for the season parameter.



Play-In Tournament

Each NBA season will feature a play-in tournament to determine the 7th and 8th seeds for each conference’s playoff bracket.

In the NBA API, these games will be found in the Play-in Tournament (PIT) season schedule:

https://api.sportradar.com/nba/production/v8/en/games/2023/PIT/schedule.xml?api=

The season parameter of PIT must also be used to retrieve seasonal statistics for these games.

At the conclusion of the regular season but prior to the first round of the playoffs, the team with the 7th-highest winning percentage in each conference will host the team with the 8th-highest winning percentage in a Play-In Game (the “Seven-Eight Game”). The winner of the Seven-Eight Game in each conference will earn the No. 7 seed.

    In the below example, the Miami Heat would host the Charlotte Hornets in the Seven-Eight Game. The winner of that game would be the 7th seed in the Eastern Conference playoffs and would play the 2nd seed in the first round.
  <team id="583ecea6-fb46-11e1-82cb-f4ce4684ea4c" name="Heat" market="Miami" sr_id="sr:team:3435" reference="1610612748">
  <rank conference="7" division="2"/>

  <team id="583ec97e-fb46-11e1-82cb-f4ce4684ea4c" name="Hornets" market="Charlotte" sr_id="sr:team:3430" reference="1610612766">
  <rank conference="8" division="3"/>

    Additionally, the team with the 9th-highest winning percentage in each conference will host the team with the 10th-highest winning percentage in the “Nine-Ten Game”.
 <team id="583ec7cd-fb46-11e1-82cb-f4ce4684ea4c" name="Pacers" market="Indiana" sr_id="sr:team:3419" reference="1610612754">
 <rank conference="9" division="2"/>
   
 <team id="583ec8d4-fb46-11e1-82cb-f4ce4684ea4c" name="Wizards" market="Washington" sr_id="sr:team:3431" reference="1610612764">
 <rank conference="10" division="4"/>
    In this example, the Indiana Pacers would host the Washington Wizards in the “Nine-Ten Game.” The loser of that game would be eliminated from playoff contention. The winner would play the loser of the Heat/Hornets game (Seven-Eight Game). The winner of that game would earn the 8th seed and play the 1st seed in the first round of the playoffs.

While all playoff series will appear in the postseason series schedule feed at the completion of the regular season, the final playoff matchups will not be determined until the play-in tournament is complete.

https://api.sportradar.com/nba/{access_level}/v8/{language_code}/series/{season_year}/PST/schedule.{format}?api_key={your_api_key}


Building Your Playoff Bracket


1. Access Play In Tournament Data

Call the Schedule endpoint to access the Play-In Tournament Schedule which will determine the 7th and 8th seeds for each conference’s playoff bracket. Ensure that your season_type is PITin your call.

📆

Playoff Schedule Availability

The initial playoff schedule (with TBD matchups) will be available shortly after the regular season schedule is released.

The following samples shows a list of games for the Play-In Tournament for the NBA 2023 season.

{
  "league": {
    "id": "4353138d-4c22-4396-95d8-5f587d2df25c",
    "name": "NBA",
    "alias": "NBA"
  },
  "season": {
    "id": "851f97e4-c830-4590-88e9-e1286383148c",
    "year": 2023,
    "type": "PIT"
  },
  "games": [
    {
      "id": "34fbb07b-8985-45e8-b0e0-00a717230b90",
      "status": "closed",
      "title": "LAL @ NOP",
      "coverage": "full",
      "scheduled": "2024-04-16T23:30:00Z",
      "home_points": 106,
      "away_points": 110,
      "track_on_court": true,
      "sr_id": "sr:match:49418221",
      "reference": "0052300121",
      "time_zones": {
        "venue": "US/Central",
        "home": "US/Central",
        "away": "US/Pacific"
      },
      "venue": {
        "id": "6ec47e31-f778-5319-b6c4-3254e076ba0e",
        "name": "Smoothie King Center",
        "capacity": 16867,
        "address": "1501 Girod Street",
        "city": "New Orleans",
        "state": "LA",
        "zip": "70113",
        "country": "USA",
        "sr_id": "sr:venue:6932",
        "location": {
          "lat": "29.948889",
          "lng": "-90.081944"
        }
      },
      "broadcasts": [
        {
          "network": "TNT",
          "type": "TV",
          "locale": "National",
          "channel": "245"
        },
        {
          "network": "truTV",
          "type": "TV",
          "locale": "National",
          "channel": "246"
        }
      ],
      "home": {
        "name": "New Orleans Pelicans",
        "alias": "NOP",
        "id": "583ecc9a-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 7,
        "sr_id": "sr:team:5539",
        "reference": "1610612740"
      },
      "away": {
        "name": "Los Angeles Lakers",
        "alias": "LAL",
        "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 8,
        "sr_id": "sr:team:3427",
        "reference": "1610612747"
      }
    },
    {
      "id": "658de491-08be-4279-a8a7-6f98f1637e70",
      "status": "closed",
      "title": "GS @ SAC",
      "coverage": "full",
      "scheduled": "2024-04-17T02:00:00Z",
      "home_points": 118,
      "away_points": 94,
      "track_on_court": true,
      "sr_id": "sr:match:49418223",
      "reference": "0052300131",
      "time_zones": {
        "venue": "US/Pacific",
        "home": "US/Pacific",
        "away": "US/Pacific"
      },
      "venue": {
        "id": "2e687b9a-c7a7-487c-85b4-43479abc8458",
        "name": "Golden 1 Center",
        "capacity": 17608,
        "address": "500 David J. Stern Walkway",
        "city": "Sacramento",
        "state": "CA",
        "zip": "95814",
        "country": "USA",
        "sr_id": "sr:venue:6942",
        "location": {
          "lat": "38.580361",
          "lng": "-121.499611"
        }
      },
      "broadcasts": [
        {
          "network": "TNT",
          "type": "TV",
          "locale": "National",
          "channel": "245"
        },
        {
          "network": "truTV",
          "type": "TV",
          "locale": "National",
          "channel": "246"
        }
      ],
      "home": {
        "name": "Sacramento Kings",
        "alias": "SAC",
        "id": "583ed0ac-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 9,
        "sr_id": "sr:team:3413",
        "reference": "1610612758"
      },
      "away": {
        "name": "Golden State Warriors",
        "alias": "GSW",
        "id": "583ec825-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 10,
        "sr_id": "sr:team:3428",
        "reference": "1610612744"
      }
    },
    {
      "id": "bd80d85f-28e4-4ae9-8dea-97b14951e8c2",
      "status": "closed",
      "title": "MIA @ PHI",
      "coverage": "full",
      "scheduled": "2024-04-17T23:00:00Z",
      "home_points": 105,
      "away_points": 104,
      "track_on_court": true,
      "sr_id": "sr:match:49418219",
      "reference": "0052300101",
      "time_zones": {
        "venue": "US/Eastern",
        "home": "US/Eastern",
        "away": "US/Eastern"
      },
      "venue": {
        "id": "b3dca541-859e-5301-bf90-4ec677a514a9",
        "name": "Wells Fargo Center",
        "capacity": 20478,
        "address": "3601 S. Broad Street",
        "city": "Philadelphia",
        "state": "PA",
        "zip": "19148",
        "country": "USA",
        "sr_id": "sr:venue:6068",
        "location": {
          "lat": "39.9012",
          "lng": "-75.171995"
        }
      },
      "broadcasts": [
        {
          "network": "ESPN",
          "type": "TV",
          "locale": "National",
          "channel": "206"
        },
        {
          "network": "ESPN2",
          "type": "TV",
          "locale": "National",
          "channel": "209"
        }
      ],
      "home": {
        "name": "Philadelphia 76ers",
        "alias": "PHI",
        "id": "583ec87d-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 7,
        "sr_id": "sr:team:3420",
        "reference": "1610612755"
      },
      "away": {
        "name": "Miami Heat",
        "alias": "MIA",
        "id": "583ecea6-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 8,
        "sr_id": "sr:team:3435",
        "reference": "1610612748"
      }
    },
    {
      "id": "adafa13c-68d5-4127-bad0-48f46dc3485d",
      "status": "closed",
      "title": "ATL @ CHI",
      "coverage": "full",
      "scheduled": "2024-04-18T01:30:00Z",
      "home_points": 131,
      "away_points": 116,
      "track_on_court": true,
      "sr_id": "sr:match:49324073",
      "reference": "0052300111",
      "time_zones": {
        "venue": "US/Central",
        "home": "US/Central",
        "away": "US/Eastern"
      },
      "venue": {
        "id": "38911649-acfd-551a-949b-68f0fcaa44e7",
        "name": "United Center",
        "capacity": 20917,
        "address": "1901 W Madison Street",
        "city": "Chicago",
        "state": "IL",
        "zip": "60612",
        "country": "USA",
        "sr_id": "sr:venue:5964",
        "location": {
          "lat": "41.880675",
          "lng": "-87.674091"
        }
      },
      "broadcasts": [
        {
          "network": "ESPN",
          "type": "TV",
          "locale": "National",
          "channel": "206"
        }
      ],
      "home": {
        "name": "Chicago Bulls",
        "alias": "CHI",
        "id": "583ec5fd-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 9,
        "sr_id": "sr:team:3409",
        "reference": "1610612741"
      },
      "away": {
        "name": "Atlanta Hawks",
        "alias": "ATL",
        "id": "583ecb8f-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 10,
        "sr_id": "sr:team:3423",
        "reference": "1610612737"
      }
    },
    {
      "id": "b1c9bbbe-feb8-43e8-8226-4df5f013c0ff",
      "status": "closed",
      "title": "CHI @ MIA",
      "coverage": "full",
      "scheduled": "2024-04-19T23:00:00Z",
      "home_points": 112,
      "away_points": 91,
      "track_on_court": true,
      "sr_id": "sr:match:49324085",
      "reference": "0052300201",
      "time_zones": {
        "venue": "US/Eastern",
        "home": "US/Eastern",
        "away": "US/Central"
      },
      "venue": {
        "id": "b67d5f09-28b2-5bc6-9097-af312007d2f4",
        "name": "Kaseya Center",
        "capacity": 19600,
        "address": "601 Biscayne Boulevard",
        "city": "Miami",
        "state": "FL",
        "zip": "33132",
        "country": "USA",
        "sr_id": "sr:venue:6928",
        "location": {
          "lat": "25.781389",
          "lng": "-80.188056"
        }
      },
      "broadcasts": [
        {
          "network": "ESPN",
          "type": "TV",
          "locale": "National",
          "channel": "206"
        }
      ],
      "home": {
        "name": "Miami Heat",
        "alias": "MIA",
        "id": "583ecea6-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 8,
        "sr_id": "sr:team:3435",
        "reference": "1610612748"
      },
      "away": {
        "name": "Chicago Bulls",
        "alias": "CHI",
        "id": "583ec5fd-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 9,
        "sr_id": "sr:team:3409",
        "reference": "1610612741"
      }
    },
    {
      "id": "75da7f44-61fd-4590-b97a-074d863b20a7",
      "status": "closed",
      "title": "SAC @ NOP",
      "coverage": "full",
      "scheduled": "2024-04-20T01:30:00Z",
      "home_points": 105,
      "away_points": 98,
      "track_on_court": true,
      "sr_id": "sr:match:49324089",
      "reference": "0052300211",
      "time_zones": {
        "venue": "US/Central",
        "home": "US/Central",
        "away": "US/Pacific"
      },
      "venue": {
        "id": "6ec47e31-f778-5319-b6c4-3254e076ba0e",
        "name": "Smoothie King Center",
        "capacity": 16867,
        "address": "1501 Girod Street",
        "city": "New Orleans",
        "state": "LA",
        "zip": "70113",
        "country": "USA",
        "sr_id": "sr:venue:6932",
        "location": {
          "lat": "29.948889",
          "lng": "-90.081944"
        }
      },
      "broadcasts": [
        {
          "network": "TNT",
          "type": "TV",
          "locale": "National",
          "channel": "245"
        },
        {
          "network": "truTV",
          "type": "TV",
          "locale": "National",
          "channel": "246"
        }
      ],
      "home": {
        "name": "New Orleans Pelicans",
        "alias": "NOP",
        "id": "583ecc9a-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 7,
        "sr_id": "sr:team:5539",
        "reference": "1610612740"
      },
      "away": {
        "name": "Sacramento Kings",
        "alias": "SAC",
        "id": "583ed0ac-fb46-11e1-82cb-f4ce4684ea4c",
        "seed": 9,
        "sr_id": "sr:team:3413",
        "reference": "1610612758"
      }
    }
  ]
}

This visual shows the NBA Play-In Tournament bracket for the 2023-24 season. The Play-In Tournament allows teams seeded 7th through 10th in each conference to compete for the final two playoff spots in each conference.



  • Western Conference:

    • Sacramento Kings (9th seed) defeated the Golden State Warriors (10th seed) to advance but were later defeated by the New Orleans Pelicans (7th seed), who secured a spot in the playoffs.
    • The Los Angeles Lakers (8th seed) beat the Pelicans to advance directly to the playoffs.
  • Eastern Conference:

    • Chicago Bulls (9th seed) defeated the Atlanta Hawks (10th seed) but lost to the Miami Heat (8th seed), who advanced to the playoffs.
    • The Philadelphia 76ers (7th seed) won their game against the Miami Heat, securing their playoff spot.

The teams highlighted as advancing (Los Angeles Lakers, New Orleans Pelicans, Miami Heat, and Philadelphia 76ers) have earned spots in the playoffs following their victories in the Play-In Tournament.


2. Pull the Playoff Schedule

Using the tournament id, pull the Series Schedule endpoint to get game details for each matchup in the NBA Playoffs. Ensure that your season_type is PSTin your call.

The following shows the structure for the first round Lakers vs. Nuggets series in the Western Conference for the 2023 NBA Playoffs. The series was a best-of-seven matchup, with the Nuggets winning 4 games and the Lakers winning 1. The individual games include detailed information such as the final scores, venues, scheduled times, and broadcasting networks for each game, with the first two games taking place in Denver at Ball Arena and the subsequent games in Los Angeles at Crypto.com Arena.

    {
      "id": "ab58c9dc-65aa-4cbf-8cbf-9eb4efbc1b5f",
      "title": "Western Conference - First Round - LAL vs DEN",
      "round": 1,
      "start_date": "2024-04-20",
      "status": "closed",
      "participants": [
        {
          "name": "Nuggets",
          "seed": 2,
          "record": 4,
          "team": {
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "name": "Nuggets",
            "alias": "DEN",
            "market": "Denver",
            "reference": "1610612743"
          }
        },
        {
          "name": "Lakers",
          "seed": 7,
          "record": 1,
          "team": {
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "name": "Lakers",
            "alias": "LAL",
            "market": "Los Angeles",
            "reference": "1610612747"
          }
        }
      ],
      "games": [
        {
          "id": "24eb2ee4-028a-4c18-a0c9-af6a07d512eb",
          "status": "closed",
          "title": "Game 1",
          "coverage": "full",
          "scheduled": "2024-04-21T00:30:00+00:00",
          "home_points": 114,
          "away_points": 103,
          "neutral_site": false,
          "track_on_court": true,
          "sr_id": "sr:match:49324839",
          "reference": "0042300151",
          "time_zones": {
            "venue": "US/Mountain",
            "home": "US/Mountain",
            "away": "US/Pacific"
          },
          "venue": {
            "id": "1a28ef88-76c9-5bcc-b4ee-51d30ca98f4f",
            "name": "Ball Arena",
            "capacity": 19520,
            "address": "1000 Chopper Circle",
            "city": "Denver",
            "state": "CO",
            "zip": "80204",
            "country": "USA",
            "sr_id": "sr:venue:5976",
            "location": {
              "lat": "39.749034",
              "lng": "-105.007604"
            }
          },
          "broadcasts": [
            {
              "network": "ABC",
              "type": "TV",
              "locale": "National"
            }
          ],
          "home": {
            "name": "Denver Nuggets",
            "alias": "DEN",
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 2,
            "sr_id": "sr:team:3417",
            "reference": "1610612743"
          },
          "away": {
            "name": "Los Angeles Lakers",
            "alias": "LAL",
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 7,
            "sr_id": "sr:team:3427",
            "reference": "1610612747"
          }
        },
        {
          "id": "a9e15f6f-fb80-4f85-85c9-7c17aaa8a9d0",
          "status": "closed",
          "title": "Game 2",
          "coverage": "full",
          "scheduled": "2024-04-23T02:00:00+00:00",
          "home_points": 101,
          "away_points": 99,
          "neutral_site": false,
          "track_on_court": true,
          "sr_id": "sr:match:49324831",
          "reference": "0042300152",
          "time_zones": {
            "venue": "US/Mountain",
            "home": "US/Mountain",
            "away": "US/Pacific"
          },
          "venue": {
            "id": "1a28ef88-76c9-5bcc-b4ee-51d30ca98f4f",
            "name": "Ball Arena",
            "capacity": 19520,
            "address": "1000 Chopper Circle",
            "city": "Denver",
            "state": "CO",
            "zip": "80204",
            "country": "USA",
            "sr_id": "sr:venue:5976",
            "location": {
              "lat": "39.749034",
              "lng": "-105.007604"
            }
          },
          "broadcasts": [
            {
              "network": "TNT",
              "type": "TV",
              "locale": "National",
              "channel": "245"
            },
            {
              "network": "SportsNet LA",
              "type": "TV",
              "locale": "Away",
              "channel": "690"
            }
          ],
          "home": {
            "name": "Denver Nuggets",
            "alias": "DEN",
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 2,
            "sr_id": "sr:team:3417",
            "reference": "1610612743"
          },
          "away": {
            "name": "Los Angeles Lakers",
            "alias": "LAL",
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 7,
            "sr_id": "sr:team:3427",
            "reference": "1610612747"
          }
        },
        {
          "id": "83a56ff2-1f33-4a4b-b387-2853b8059355",
          "status": "closed",
          "title": "Game 3",
          "coverage": "full",
          "scheduled": "2024-04-26T02:00:00+00:00",
          "home_points": 105,
          "away_points": 112,
          "neutral_site": false,
          "track_on_court": true,
          "sr_id": "sr:match:49324841",
          "reference": "0042300153",
          "time_zones": {
            "venue": "US/Pacific",
            "home": "US/Pacific",
            "away": "US/Mountain"
          },
          "venue": {
            "id": "792ec100-691e-5e16-8ef8-79b2b6ee38ba",
            "name": "Crypto.com Arena",
            "capacity": 18997,
            "address": "1111 S. Figueroa Street",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90015",
            "country": "USA",
            "sr_id": "sr:venue:6008",
            "location": {
              "lat": "34.043059",
              "lng": "-118.267223"
            }
          },
          "broadcasts": [
            {
              "network": "TNT",
              "type": "TV",
              "locale": "National",
              "channel": "245"
            },
            {
              "network": "SportsNet LA",
              "type": "TV",
              "locale": "Home",
              "channel": "690"
            },
            {
              "network": "truTV",
              "type": "TV",
              "locale": "National",
              "channel": "246"
            },
            {
              "network": "ALT",
              "type": "TV",
              "locale": "Away",
              "channel": "681"
            }
          ],
          "home": {
            "name": "Los Angeles Lakers",
            "alias": "LAL",
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 7,
            "sr_id": "sr:team:3427",
            "reference": "1610612747"
          },
          "away": {
            "name": "Denver Nuggets",
            "alias": "DEN",
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 2,
            "sr_id": "sr:team:3417",
            "reference": "1610612743"
          }
        },
        {
          "id": "03e07b58-1756-49cc-9a11-b78d565ee37d",
          "status": "closed",
          "title": "Game 4",
          "coverage": "full",
          "scheduled": "2024-04-28T00:30:00+00:00",
          "home_points": 119,
          "away_points": 108,
          "neutral_site": false,
          "track_on_court": true,
          "sr_id": "sr:match:49324835",
          "reference": "0042300154",
          "time_zones": {
            "venue": "US/Pacific",
            "home": "US/Pacific",
            "away": "US/Mountain"
          },
          "venue": {
            "id": "792ec100-691e-5e16-8ef8-79b2b6ee38ba",
            "name": "Crypto.com Arena",
            "capacity": 18997,
            "address": "1111 S. Figueroa Street",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90015",
            "country": "USA",
            "sr_id": "sr:venue:6008",
            "location": {
              "lat": "34.043059",
              "lng": "-118.267223"
            }
          },
          "broadcasts": [
            {
              "network": "ABC",
              "type": "TV",
              "locale": "National"
            }
          ],
          "home": {
            "name": "Los Angeles Lakers",
            "alias": "LAL",
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 7,
            "sr_id": "sr:team:3427",
            "reference": "1610612747"
          },
          "away": {
            "name": "Denver Nuggets",
            "alias": "DEN",
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 2,
            "sr_id": "sr:team:3417",
            "reference": "1610612743"
          }
        },
        {
          "id": "c33fb477-9ef9-4808-bb4f-2dcfd760b679",
          "status": "closed",
          "title": "Game 5",
          "coverage": "full",
          "scheduled": "2024-04-30T02:00:00+00:00",
          "home_points": 108,
          "away_points": 106,
          "neutral_site": false,
          "track_on_court": true,
          "sr_id": "sr:match:49324833",
          "reference": "0042300155",
          "time_zones": {
            "venue": "US/Mountain",
            "home": "US/Mountain",
            "away": "US/Pacific"
          },
          "venue": {
            "id": "1a28ef88-76c9-5bcc-b4ee-51d30ca98f4f",
            "name": "Ball Arena",
            "capacity": 19520,
            "address": "1000 Chopper Circle",
            "city": "Denver",
            "state": "CO",
            "zip": "80204",
            "country": "USA",
            "sr_id": "sr:venue:5976",
            "location": {
              "lat": "39.749034",
              "lng": "-105.007604"
            }
          },
          "broadcasts": [
            {
              "network": "TNT",
              "type": "TV",
              "locale": "National",
              "channel": "245"
            },
            {
              "network": "ALT",
              "type": "TV",
              "locale": "Home",
              "channel": "681"
            },
            {
              "network": "SportsNet LA",
              "type": "TV",
              "locale": "Away",
              "channel": "690"
            },
            {
              "network": "truTV",
              "type": "TV",
              "locale": "National",
              "channel": "246"
            }
          ],
          "home": {
            "name": "Denver Nuggets",
            "alias": "DEN",
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 2,
            "sr_id": "sr:team:3417",
            "reference": "1610612743"
          },
          "away": {
            "name": "Los Angeles Lakers",
            "alias": "LAL",
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 7,
            "sr_id": "sr:team:3427",
            "reference": "1610612747"
          }
        },
        {
          "id": "3eb8f631-541a-49ea-81e8-7f96847262dc",
          "status": "unnecessary",
          "title": "Game 6 (if necessary)",
          "coverage": "full",
          "scheduled": "2024-05-02T17:00:00+00:00",
          "neutral_site": false,
          "track_on_court": true,
          "reference": "0042300156",
          "time_zones": {
            "venue": "US/Pacific",
            "home": "US/Pacific",
            "away": "US/Mountain"
          },
          "venue": {
            "id": "792ec100-691e-5e16-8ef8-79b2b6ee38ba",
            "name": "Crypto.com Arena",
            "capacity": 18997,
            "address": "1111 S. Figueroa Street",
            "city": "Los Angeles",
            "state": "CA",
            "zip": "90015",
            "country": "USA",
            "sr_id": "sr:venue:6008",
            "location": {
              "lat": "34.043059",
              "lng": "-118.267223"
            }
          },
          "home": {
            "name": "Los Angeles Lakers",
            "alias": "LAL",
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 7,
            "sr_id": "sr:team:3427",
            "reference": "1610612747"
          },
          "away": {
            "name": "Denver Nuggets",
            "alias": "DEN",
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 2,
            "sr_id": "sr:team:3417",
            "reference": "1610612743"
          }
        },
        {
          "id": "56014924-10c7-4c63-af41-0bdccf9908f6",
          "status": "unnecessary",
          "title": "Game 7 (if necessary)",
          "coverage": "full",
          "scheduled": "2024-05-04T17:00:00+00:00",
          "neutral_site": false,
          "track_on_court": true,
          "reference": "0042300157",
          "time_zones": {
            "venue": "US/Mountain",
            "home": "US/Mountain",
            "away": "US/Pacific"
          },
          "venue": {
            "id": "1a28ef88-76c9-5bcc-b4ee-51d30ca98f4f",
            "name": "Ball Arena",
            "capacity": 19520,
            "address": "1000 Chopper Circle",
            "city": "Denver",
            "state": "CO",
            "zip": "80204",
            "country": "USA",
            "sr_id": "sr:venue:5976",
            "location": {
              "lat": "39.749034",
              "lng": "-105.007604"
            }
          },
          "home": {
            "name": "Denver Nuggets",
            "alias": "DEN",
            "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 2,
            "sr_id": "sr:team:3417",
            "reference": "1610612743"
          },
          "away": {
            "name": "Los Angeles Lakers",
            "alias": "LAL",
            "id": "583ecae2-fb46-11e1-82cb-f4ce4684ea4c",
            "seed": 7,
            "sr_id": "sr:team:3427",
            "reference": "1610612747"
          }
        }
      ]
    },

Team TBD:

If you see a Team TBD, this indicates that the specific teams participating in the matchups are not yet decided. These placeholders will be replaced with the actual team names once the regular season concludes and playoff berths are finalized.

👍

Tip - Start Building Your Bracket

You can use this information to start constructing a playoff bracket in your application. By querying the series scheduling, you can populate the bracket with the correct matchups, scheduling details, and eventually, the actual team names as they become available. The home and away attributes for each game will be updated with the relevant teams, allowing you to dynamically update the bracket as the tournament progresses.

The following is a completed bracket for the 2023 NBA Playoffs which can be populated using the data from the Series Schedule feed:


Serries Schedule - Recommended Pull Frequency:

  • Schedule info is updated in realtime as changes are made. The initial playoff schedule (with TBD matchups) will be available shortly after the regular season schedule is released.
    • Teams will advance to the next round on a 2-minute timer after the previous game moves to complete status
  • Pull every hour or less depending on your use case.
    Note: This feed should be used for schedule info prior to a game start. For the status of a live game, reference a game-endpoint.
  • The TTL/Cache is 10 seconds.

3. Track Series Statistics

Along with tracking live games in each matchup, you can use the Series Statistics feed to pull team and player statistics from the playoffs.


Pulling this feed:

  1. Use the Playoff Schedule feed from step 2 to determine the series_id and team_id you want to use.
  2. Call the Series Statistics endpoint.

Example:

{
  "id": "ab58c9dc-65aa-4cbf-8cbf-9eb4efbc1b5f",
  "title": "Western Conference - First Round - LAL vs DEN",
  "status": "closed",
  "season": {
    "id": "8905ddd2-e5f0-4734-b9ef-c9c3452b72d2",
    "year": 2023,
    "type": "PST"
  },
  "team": {
    "id": "583ed102-fb46-11e1-82cb-f4ce4684ea4c",
    "name": "Nuggets",
    "market": "Denver",
    "sr_id": "sr:team:3417"
  },
  "own_record": {
    "total": {
      "games_played": 5,
      "minutes": 1200,
      "field_goals_made": 211,
      "field_goals_att": 456,
      "field_goals_pct": 0.463,
      "two_points_made": 158,
      "two_points_att": 284,
      "two_points_pct": 0.556,
      "three_points_made": 53,
      "three_points_att": 172,
      "three_points_pct": 0.308,
      "blocked_att": 20,
      "free_throws_made": 68,
      "free_throws_att": 79,
      "free_throws_pct": 0.861,
      "offensive_rebounds": 56,
      "defensive_rebounds": 174,
      "rebounds": 230,
      "assists": 138,
      "turnovers": 53,
      "assists_turnover_ratio": 2.6,
      "steals": 32,
      "blocks": 16,
      "personal_fouls": 82,
      "tech_fouls": 4,
      "points": 543,
      "fast_break_pts": 75,
      "flagrant_fouls": 0,
      "points_off_turnovers": 34,
      "second_chance_pts": 47,
      "ejections": 0,
      "foulouts": 0,
      "efficiency": 650,
      "points_in_paint": 276,
      "team_offensive_rebounds": 20,
      "team_defensive_rebounds": 4,
      "team_rebounds": 24,
      "team_turnovers": 3,
      "total_rebounds": 254,
      "total_turnovers": 56,
      "true_shooting_att": 490.76,
      "true_shooting_pct": 0.553,
      "field_goals_at_rim_made": 90,
      "field_goals_at_rim_att": 134,
      "field_goals_at_rim_pct": 0.672,
      "field_goals_at_midrange_made": 20,
      "field_goals_at_midrange_att": 53,
      "field_goals_at_midrange_pct": 0.377,
      "points_in_paint_made": 138,
      "points_in_paint_att": 229,
      "points_in_paint_pct": 0.603,
      "effective_fg_pct": 0.521,
      "bench_points": 59,
      "fouls_drawn": 83,
      "offensive_fouls": 5,
      "team_tech_fouls": 4,
      "defensive_assists": 0,
      "fast_break_att": 58,
      "fast_break_made": 33,
      "fast_break_pct": 0.569,
      "technical_other": 0,
      "coach_ejections": 0,
      "points_against": 532,
      "second_chance_att": 51,
      "second_chance_made": 25,
      "second_chance_pct": 0.49,
      "coach_tech_fouls": 0,
      "team_fouls": 4,
      "total_fouls": 86,
      "possessions": 490.76,
      "opponent_possessions": 482.36,
      "offensive_rating": 110.64,
      "defensive_rating": 110.29,
      "net_rating": 0.35
    },
    "average": {
      "fast_break_pts": 15,
      "points_off_turnovers": 6.8,
      "second_chance_pts": 9.4,
      "minutes": 240,
      "points": 108.6,
      "off_rebounds": 11.2,
      "def_rebounds": 34.8,
      "rebounds": 46,
      "assists": 27.6,
      "steals": 6.4,
      "blocks": 3.2,
      "turnovers": 10.6,
      "personal_fouls": 16.4,
      "flagrant_fouls": 0,
      "blocked_att": 4,
      "field_goals_made": 42.2,
      "field_goals_att": 91.2,
      "three_points_made": 10.6,
      "three_points_att": 34.4,
      "free_throws_made": 13.6,
      "free_throws_att": 15.8,
      "two_points_made": 31.6,
      "two_points_att": 56.8,
      "points_in_paint": 55.2,
      "efficiency": 130,
      "true_shooting_att": 98.15,
      "points_in_paint_att": 45.8,
      "points_in_paint_made": 27.6,
      "bench_points": 11.8,
      "fouls_drawn": 16.6,
      "offensive_fouls": 1,
      "fast_break_att": 11.6,
      "fast_break_made": 6.6,
      "second_chance_att": 10.2,
      "second_chance_made": 5
    }
  },
  "opponents": {
    "total": {
      "games_played": 5,
      "minutes": 1200,
      "field_goals_made": 208,
      "field_goals_att": 423,
      "field_goals_pct": 0.492,
      "two_points_made": 164,
      "two_points_att": 276,
      "two_points_pct": 0.594,
      "three_points_made": 44,
      "three_points_att": 147,
      "three_points_pct": 0.299,
      "blocked_att": 16,
      "free_throws_made": 72,
      "free_throws_att": 94,
      "free_throws_pct": 0.766,
      "offensive_rebounds": 37,
      "defensive_rebounds": 166,
      "rebounds": 203,
      "assists": 122,
      "turnovers": 52,
      "assists_turnover_ratio": 2.35,
      "steals": 30,
      "blocks": 20,
      "personal_fouls": 83,
      "tech_fouls": 2,
      "points": 532,
      "fast_break_pts": 77,
      "flagrant_fouls": 0,
      "points_off_turnovers": 50,
      "second_chance_pts": 42,
      "ejections": 0,
      "foulouts": 0,
      "efficiency": 618,
      "points_in_paint": 286,
      "team_offensive_rebounds": 22,
      "team_defensive_rebounds": 14,
      "team_rebounds": 36,
      "team_turnovers": 3,
      "total_rebounds": 239,
      "total_turnovers": 55,
      "true_shooting_att": 464.36,
      "true_shooting_pct": 0.573,
      "field_goals_at_rim_made": 92,
      "field_goals_at_rim_att": 131,
      "field_goals_at_rim_pct": 0.702,
      "field_goals_at_midrange_made": 21,
      "field_goals_at_midrange_att": 42,
      "field_goals_at_midrange_pct": 0.5,
      "points_in_paint_made": 143,
      "points_in_paint_att": 234,
      "points_in_paint_pct": 0.611,
      "effective_fg_pct": 0.544,
      "bench_points": 60,
      "fouls_drawn": 82,
      "offensive_fouls": 6,
      "team_tech_fouls": 2,
      "defensive_assists": 0,
      "fast_break_att": 48,
      "fast_break_made": 30,
      "fast_break_pct": 0.625,
      "technical_other": 0,
      "coach_ejections": 0,
      "points_against": 543,
      "second_chance_att": 35,
      "second_chance_made": 19,
      "second_chance_pct": 0.543,
      "coach_tech_fouls": 0,
      "team_fouls": 2,
      "total_fouls": 85,
      "possessions": 482.36,
      "opponent_possessions": 490.76,
      "offensive_rating": 110.29,
      "defensive_rating": 110.64,
      "net_rating": -0.35
    },
    "average": {
      "fast_break_pts": 15.4,
      "points_off_turnovers": 10,
      "second_chance_pts": 8.4,
      "minutes": 240,
      "points": 106.4,
      "off_rebounds": 7.4,
      "def_rebounds": 33.2,
      "rebounds": 40.6,
      "assists": 24.4,
      "steals": 6,
      "blocks": 4,
      "turnovers": 10.4,
      "personal_fouls": 16.6,
      "flagrant_fouls": 0,
      "blocked_att": 3.2,
      "field_goals_made": 41.6,
      "field_goals_att": 84.6,
      "three_points_made": 8.8,
      "three_points_att": 29.4,
      "free_throws_made": 14.4,
      "free_throws_att": 18.8,
      "two_points_made": 32.8,
      "two_points_att": 55.2,
      "points_in_paint": 57.2,
      "efficiency": 123.6,
      "true_shooting_att": 92.87,
      "points_in_paint_att": 46.8,
      "points_in_paint_made": 28.6,
      "bench_points": 12,
      "fouls_drawn": 16.4,
      "offensive_fouls": 1.2,
      "fast_break_att": 9.6,
      "fast_break_made": 6,
      "second_chance_att": 7,
      "second_chance_made": 3.8
    }
  },
  "players": [
    {
      "id": "0036a1fa-ff9a-44a5-8061-68b828ee2b1e",
      "full_name": "DeAndre Jordan",
      "first_name": "DeAndre",
      "last_name": "Jordan",
      "position": "C",
      "primary_position": "C",
      "jersey_number": "6",
      "sr_id": "sr:player:607508",
      "reference": "201599",
      "total": {
        "games_played": 1,
        "games_started": 0,
        "minutes": 9,
        "field_goals_made": 1,
        "field_goals_att": 1,
        "field_goals_pct": 1,
        "two_points_made": 1,
        "two_points_att": 1,
        "two_points_pct": 1,
        "three_points_made": 0,
        "three_points_att": 0,
        "three_points_pct": 0,
        "blocked_att": 0,
        "free_throws_made": 2,
        "free_throws_att": 2,
        "free_throws_pct": 1,
        "offensive_rebounds": 0,
        "defensive_rebounds": 2,
        "rebounds": 2,
        "assists": 0,
        "turnovers": 0,
        "assists_turnover_ratio": 0,
        "steals": 1,
        "blocks": 1,
        "personal_fouls": 3,
        "tech_fouls": 0,
        "points": 4,
        "flagrant_fouls": 0,
        "ejections": 0,
        "foulouts": 0,
        "tech_fouls_non_unsportsmanlike": 0,
        "true_shooting_att": 1.88,
        "true_shooting_pct": 1.064,
        "efficiency": 8,
        "field_goals_at_rim_made": 1,
        "field_goals_at_rim_att": 1,
        "field_goals_at_rim_pct": 1,
        "field_goals_at_midrange_made": 0,
        "field_goals_at_midrange_att": 0,
        "field_goals_at_midrange_pct": 0,
        "usage_pct": 9.22,
        "points_off_turnovers": 2,
        "points_in_paint": 2,
        "points_in_paint_made": 1,
        "points_in_paint_att": 1,
        "points_in_paint_pct": 1,
        "effective_fg_pct": 1,
        "double_doubles": 0,
        "triple_doubles": 0,
        "fouls_drawn": 2,
        "offensive_fouls": 0,
        "fast_break_pts": 0,
        "fast_break_att": 0,
        "fast_break_made": 0,
        "fast_break_pct": 0,
        "coach_ejections": 0,
        "second_chance_pct": 0,
        "second_chance_pts": 0,
        "second_chance_att": 0,
        "second_chance_made": 0,
        "minus": 20,
        "plus": 17,
        "coach_tech_fouls": 0
      },
      "average": {
        "minutes": 9,
        "points": 4,
        "off_rebounds": 0,
        "def_rebounds": 2,
        "rebounds": 2,
        "assists": 0,
        "steals": 1,
        "blocks": 1,
        "turnovers": 0,
        "personal_fouls": 3,
        "flagrant_fouls": 0,
        "blocked_att": 0,
        "field_goals_made": 1,
        "field_goals_att": 1,
        "three_points_made": 0,
        "three_points_att": 0,
        "free_throws_made": 2,
        "free_throws_att": 2,
        "two_points_made": 1,
        "two_points_att": 1,
        "efficiency": 8,
        "true_shooting_att": 1.88,
        "points_off_turnovers": 2,
        "points_in_paint_made": 1,
        "points_in_paint_att": 1,
        "points_in_paint": 2,
        "fouls_drawn": 2,
        "offensive_fouls": 0,
        "fast_break_pts": 0,
        "fast_break_att": 0,
        "fast_break_made": 0,
        "second_chance_pts": 0,
        "second_chance_att": 0,
        "second_chance_made": 0
      }
    },
    {
      "id": "05dea31d-f1ff-491b-9f17-8be88b26f413",
      "full_name": "Justin Holiday",
      "first_name": "Justin",
      "last_name": "Holiday",
      "position": "F-G",
      "primary_position": "SG",
      "sr_id": "sr:player:607728",
      "reference": "203200",
      "total": {
        "games_played": 5,
        "games_started": 0,
        "minutes": 36,
        "field_goals_made": 1,
        "field_goals_att": 10,
        "field_goals_pct": 0.1,
        "two_points_made": 0,
        "two_points_att": 1,
        "two_points_pct": 0,
        "three_points_made": 1,
        "three_points_att": 9,
        "three_points_pct": 0.111,
        "blocked_att": 0,
        "free_throws_made": 0,
        "free_throws_att": 0,
        "free_throws_pct": 0,
        "offensive_rebounds": 1,
        "defensive_rebounds": 3,
        "rebounds": 4,
        "assists": 1,
        "turnovers": 0,
        "assists_turnover_ratio": 0,
        "steals": 4,
        "blocks": 0,
        "personal_fouls": 4,
        "tech_fouls": 0,
        "points": 3,
        "flagrant_fouls": 0,
        "ejections": 0,
        "foulouts": 0,
        "tech_fouls_non_unsportsmanlike": 0,
        "true_shooting_att": 10,
        "true_shooting_pct": 0.15,
        "efficiency": 3,
        "field_goals_at_rim_made": 0,
        "field_goals_at_rim_att": 0,
        "field_goals_at_rim_pct": 0,
        "field_goals_at_midrange_made": 0,
        "field_goals_at_midrange_att": 1,
        "field_goals_at_midrange_pct": 0,
        "usage_pct": 12.26,
        "points_off_turnovers": 0,
        "points_in_paint": 0,
        "points_in_paint_made": 0,
        "points_in_paint_att": 0,
        "points_in_paint_pct": 0,
        "effective_fg_pct": 0.15,
        "double_doubles": 0,
        "triple_doubles": 0,
        "fouls_drawn": 2,
        "offensive_fouls": 0,
        "fast_break_pts": 0,
        "fast_break_att": 0,
        "fast_break_made": 0,
        "fast_break_pct": 0,
        "coach_ejections": 0,
        "second_chance_pct": 0,
        "second_chance_pts": 0,
        "second_chance_att": 1,
        "second_chance_made": 0,
        "minus": 75,
        "plus": 63,
        "coach_tech_fouls": 0
      },
      "average": {
        "minutes": 7.2,
        "points": 0.6,
        "off_rebounds": 0.2,
        "def_rebounds": 0.6,
        "rebounds": 0.8,
        "assists": 0.2,
        "steals": 0.8,
        "blocks": 0,
        "turnovers": 0,
        "personal_fouls": 0.8,
        "flagrant_fouls": 0,
        "blocked_att": 0,
        "field_goals_made": 0.2,
        "field_goals_att": 2,
        "three_points_made": 0.2,
        "three_points_att": 1.8,
        "free_throws_made": 0,
        "free_throws_att": 0,
        "two_points_made": 0,
        "two_points_att": 0.2,
        "efficiency": 0.6,
        "true_shooting_att": 2,
        "points_off_turnovers": 0,
        "points_in_paint_made": 0,
        "points_in_paint_att": 0,
        "points_in_paint": 0,
        "fouls_drawn": 0.4,
        "offensive_fouls": 0,
        "fast_break_pts": 0,
        "fast_break_att": 0,
        "fast_break_made": 0,
        "second_chance_pts": 0,
        "second_chance_att": 0.2,
        "second_chance_made": 0
      }
    }
  ]
}

Recommended Pull Frequency - Series Statistics:

  • Series statistics are updated on a five minute timer after a game is moved to closed
  • To receive the fastest updates, call the feed five to ten minutes after a game is moved to closed.
  • Otherwise, utilize this feed on an as needed basis.
  • The TTL/Cache is two seconds.


In-Season Tournament

The NBA In-Season Tournament is a mid-season competition where teams compete in a series of group-stage and knockout games, with the goal of winning the tournament's championship and a special prize.

In group play, all 30 teams are randomly drawn into groups of five (six groups overall) within their conference based on their previous season’s win-loss record. Each team will play four designated group play games against each opponent in its group, with two games at home and two on the road.

Eight teams advance to the knockout rounds: the six teams with the best standing in their group and two wild card teams (the team from each conference with the best record in Group Play games that finished second in its group).

All 67 In-Season Tournament games count towards the regular season standings except for the In-Season Tournament Championship game. Each team will continue to play 82 regular season games.


Season Types

A new season type was created in the NBA API for the NBA In-Season Tournament called In-Season Tournament with code (also referred to as parameter) of IST. This season type can be retrieved via the NBA Seasons feed:

https://api.sportradar.com/nba/production/v8/en/league/seasons.xml?api_key=

</season>
    <season id="170cfa7b-54e8-468b-ab9f-21244769bd75" year="2023" start_date="2023-12-09" end_date="2023-12-10" status="scheduled">
        <type code="IST" name="In-Season Tournament"/>
</season>

This code (or parameter) can be used to retrieve endpoints for the following feeds:

  • League Leaders
  • Rankings
  • Schedule
  • Seasonal Statistics
  • Series Schedule
  • Splits (Game)
  • Splits (Hierarchy)
  • Splits (In-Game)
  • Splits (Schedule)
  • Standings

Click here for XML and JSON samples of the Seasons feed with the IST season included.


Tournament Schedule

Group Play

With the exception of the In-season Championship Game, all NBA In-Season Tournament games will appear in the NBA API Regular Season (REG) schedule.

Example for 2023 season: https://api.sportradar.com/nba/production/v8/en/games/2023/REG/schedule.xml?api_key=

The regular season games included in the NBA In-Season Tournament will have a game attribute called inseason_tournament with a value of true.

<game id="d4d3c86e-43f3-48e6-bdf6-b92f18b172e5" status="scheduled" coverage="full" 
 scheduled="2023-11-03T23:00:00Z" inseason_tournament="true" reference="0022300001" 
 home_team="583ec7cd-fb46-11e1-82cb-f4ce4684ea4c" away_team="583ec773-fb46-11e1-82cb-f4ce4684ea4c">

Click here for XML and JSON samples of the Schedule feed with the inseason_tournament games included.

Quarterfinals & Semifinals

In the knockout rounds, all games will be created as a part of a one-game series. The quarterfinals and semifinals will be created in the regular season and will appear in the regular season schedule paths (League Schedule and Series Schedule):

League Schedule: https://api.sportradar.us/nba/production/v8/en/games/2023/REG/schedule.xml?api_key=

Series Schedule:
https://api.sportradar.us/nba/production/v8/en/series/2023/REG/schedule.xml?api_key=

<league
	xmlns="http://feed.elasticstats.com/schema/basketball/schedule-v5.0.xsd" id="4353138d-4c22-4396-95d8-
5f587d2df25c" name="NBA" alias="NBA">
	<season-schedule id="93f22ddf-a842-47ea-bdba-4306461c7219" year="2023" type="REG">
		<series id="0a8d5e26-9843-41cc-be41-6e3f85a8b8a7" title="NBA In-Season Tournament Quarterfinals - PHI vs
MIL" round="1" start_date="2023-12-05" status="scheduled">
			<participant name="76ers" seed="3" record="0">
				<team id="583ec87d-fb46-11e1-82cb-f4ce4684ea4c" name="76ers" alias="PHI" market="Philadelphia"
reference="1610612755"/>
			</participant>
			<participant name="Bucks" seed="2" record="0">
				<team id="583ecefd-fb46-11e1-82cb-f4ce4684ea4c" name="Bucks" alias="MIL" market="Milwaukee"
reference="1610612749"/>
			</participant>
			<games>
				<game id="d6f0f89e-b9b4-4726-ae6b-533292dba030" status="scheduled" title="NBA In-Season
Tournament Quarterfinals - Game 4" coverage="full" scheduled="2023-12-06T02:30:00+00:00" neutral_site="false"
inseason_tournament="true" track_on_court="true" reference="4444444444" home_team="583ecefd-fb46-11e1-82cbf4ce4684ea4c" away_team="583ec87d-fb46-11e1-82cb-f4ce4684ea4c">
					<time_zones venue="US/Central" home="US/Central" away="US/Eastern"/>
					<venue id="50b75324-b994-46af-a0a7-28db7bea67d0" name="Fiserv Forum" capacity="17500"
address="1111 Vel R Phillips Avenue" city="Milwaukee" state="WI" zip="53203" country="USA">
						<location lat="43.045028" lng="-87.918167"/>
					</venue>
					<home name="Milwaukee Bucks" alias="MIL" id="583ecefd-fb46-11e1-82cb-f4ce4684ea4c" seed="2"
reference="1610612749"></home>
					<away name="Philadelphia 76ers" alias="PHI" id="583ec87d-fb46-11e1-82cb-f4ce4684ea4c" seed="3"
reference="1610612755"></away>
				</game>
			</games>
		</series>

Click here for XML and JSON samples of the knockout rounds.

Championship Game

The NBA In-Season Tournament Championship game, due to not counting towards the regular season standings, will appear in the In-Season Tournament (IST) season and series schedule:

Season Schedule: https://api.sportradar.us/nba/production/v8/en/games/2023/IST/schedule.xml?api_key=

Series Schedule:
https://api.sportradar.us/nba/production/v8/en/series/2023/IST/schedule.xml?api_key=

<league
	xmlns="http://feed.elasticstats.com/schema/basketball/schedule-v5.0.xsd" id="4353138d-4c22-4396-95d8-
5f587d2df25c" name="NBA" alias="NBA">
	<season-schedule id="8d181bc8-11cf-48e9-9d99-570799735ece" year="2023" type="IST">
		<series id="243f30ae-1a9e-4c33-8d5b-ea4c7a498463" title="NBA In-Season Tournament Championship - BOS
vs MIN" round="3" start_date="2023-12-09" status="scheduled">
			<participant name="Timberwolves" seed="2" record="0">
				<team id="583eca2f-fb46-11e1-82cb-f4ce4684ea4c" name="Timberwolves" alias="MIN"
market="Minnesota" reference="1610612750"/>
			</participant>
			<participant name="Celtics" seed="1" record="0">
				<team id="583eccfa-fb46-11e1-82cb-f4ce4684ea4c" name="Celtics" alias="BOS" market="Boston"
reference="1610612738"/>
			</participant>
			<games>
				<game id="9d4faf8e-e518-4736-8b08-5bcdcf423627" status="scheduled" title="NBA In-Season
Tournament Championship Game" coverage="full" scheduled="2023-12-10T01:00:00+00:00" neutral_site="false"
inseason_tournament="true" track_on_court="true" reference="7777777777" home_team="583eccfa-fb46-11e1-82cbf4ce4684ea4c" away_team="583eca2f-fb46-11e1-82cb-f4ce4684ea4c">
					<time_zones venue="US/Eastern" home="US/Eastern" away="US/Central"/>
					<venue id="7d69b080-91ca-53c9-9302-45c1a72c5549" name="TD Garden" capacity="18624"
address="100 Legends Way" city="Boston" state="MA" zip="02114" country="USA">
						<location lat="42.366303" lng="-71.062228"/>
					</venue>
					<home name="Boston Celtics" alias="BOS" id="583eccfa-fb46-11e1-82cb-f4ce4684ea4c" seed="1"
reference="1610612738"></home>
					<away name="Minnesota Timberwolves" alias="MIN" id="583eca2f-fb46-11e1-82cb-f4ce4684ea4c"
seed="2" reference="1610612750"></away>
				</game>
			</games>
		</series>
	</season-schedule>
</league>

Click here for XML and JSON samples of the Championship game.


Standings

To access the In-Season Tournament standings, you need use the IST season parameter. In the endpoint below, you will see teams placed in the In-Season Tournament groups.

Please note that no in-season tournament data will exist in the Regular Season standings.

https://api.sportradar.us/nba/production/v8/en/seasons/2023/IST/standings.xml?api_key=

<league
	xmlns="http://feed.elasticstats.com/schema/basketball/nba/standings-v4.0.xsd" id="4353138d-4c22-4396-
95d8-5f587d2df25c" name="NBA" alias="NBA">
	<season id="170cfa7b-54e8-468b-ab9f-21244769bd75" year="2023" type="IST">
		<conference id="02e1f608-b72d-484c-9fb3-c9df903bc54d" name="EASTERN CONFERENCE" alias="EASTERNIST">
			<division id="34643105-9549-4682-9801-fc72fb4880c4" name="East Group A" alias="EAST_GROUP_A">
				<team id="583ecb8f-fb46-11e1-82cb-f4ce4684ea4c" name="Hawks" market="Atlanta" wins="0" losses="0"
win_pct="0.0" points_for="0.0" points_against="0.0" point_diff="0.0" sr_id="sr:team:3423" reference="1610612737">
					<games-behind league="0.0" conference="0.0" division="0.0"/>
					<streak></streak>
					<calc_rank/>
					<records></records>
				</team>
				<team id="583ec773-fb46-11e1-82cb-f4ce4684ea4c" name="Cavaliers" market="Cleveland" wins="0"
losses="0" win_pct="0.0" points_for="0.0" points_against="0.0" point_diff="0.0" sr_id="sr:team:3432"
reference="1610612739">
					<games-behind league="0.0" conference="0.0" division="0.0"/>
					<streak></streak>
					<calc_rank/>
					<records></records>
				</team>
				<team id="583ec928-fb46-11e1-82cb-f4ce4684ea4c" name="Pistons" market="Detroit" wins="0" losses="0"
win_pct="0.0" points_for="0.0" points_against="0.0" point_diff="0.0" sr_id="sr:team:3424" reference="1610612765">
					<games-behind league="0.0" conference="0.0" division="0.0"/>
					<streak></streak>
					<calc_rank/>
					<records></records>
				</team>
				<team id="583ec7cd-fb46-11e1-82cb-f4ce4684ea4c" name="Pacers" market="Indiana" wins="0" losses="0"
win_pct="0.0" points_for="0.0" points_against="0.0" point_diff="0.0" sr_id="sr:team:3419" reference="1610612754">
					<games-behind league="0.0" conference="0.0" division="0.0"/>
					<streak></streak>
					<calc_rank/>
					<records></records>
				</team>
				<team id="583ec87d-fb46-11e1-82cb-f4ce4684ea4c" name="76ers" market="Philadelphia" wins="0"
losses="0" win_pct="0.0" points_for="0.0" points_against="0.0" point_diff="0.0" sr_id="sr:team:3420"
reference="1610612755">
					<games-behind league="0.0" conference="0.0" division="0.0"/>
					<streak></streak>

Click here for XML and JSON samples of the IST Standings.