Integration GuidesReference Docs
Coverage MatrixDocumentationChange LogLog InContact Us
Integration Guides

Playoffs

This guide walks 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 endpoints:

  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. Use the Series Schedule endpoint to access game-centric endpoints, which update live scores and stats for all playoff games. If needed, reference the Series Statistics endpoint for 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 includes a play-in tournament to determine the 7th and 8th seeds for each conference’s playoff bracket. These games are found in the Play-in Tournament (PIT) season schedule:


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”.

    In the below 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.
 <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"/>

While all playoff series appear in the postseason Series Schedule endpoint at the completion of the regular season, the final playoff matchups are not determined until the play-in tournament is complete. See the Building Your Bracket section below for further info.

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. 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.

Click to view a return sample of the 2023-24 Play-In Tournament schedule
{
  "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 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 (9) defeated Golden State (10) to advance but were later defeated by New Orleans (7), who secured a spot in the playoffs.
    • Los Angeles (8) beat New Orleans (7) to advance directly to the playoffs.
  • Eastern Conference:

    • Chicago (9) defeated Atlanta (10) but lost to Miami (8), who advanced to the playoffs.
    • Philadelphia (7) beat Miami (8) to advance directly to the playoffs.

The teams highlighted as advancing (Lakers, Pelicans, Heat, and 76ers) earned 7th and 8th seed spots in the Playoffs.


2. Playoff Schedule Data

Retrieve the Series Schedule endpoint for game details of the entire NBA Playoffs. Ensure that your season_type is PSTin your call.

The initial playoff schedule is made available shortly after the regular season schedule is released. The initial schedule includes "to-be-determined" matchup data, marked with Team TBD team names and a standardized unique identifier (907dc4e5-6957-4d19-b7d4-b1b7003b91e6).

Click to view a playoff schedule with TBD matchups
{
    "league": {
        "id": "4353138d-4c22-4396-95d8-5f587d2df25c",
        "name": "NBA",
        "alias": "NBA"
    },
    "season": {
        "id": "64bb5ffa-bd55-4ea3-b7f8-efc4959c1187",
        "year": 2024,
        "type": "PST"
    },
    "series": [
        {
            "id": "03328232-5e05-4db6-bac7-9d573c493bbd",
            "title": "Eastern Conference - Semifinals - TBD vs TBD",
            "round": 2,
            "start_date": "2025-05-05",
            "status": "scheduled",
            "participants": [
                {
                    "name": "Eastern Conference - First Round - 5 vs 4",
                    "record": 0,
                    "source": {
                        "id": "b9897ae5-9dc4-4c87-9264-196376614e60",
                        "title": "Eastern Conference - First Round - 5 vs 4",
                        "round": 1,
                        "outcome": "win"
                    }
                },
                {
                    "name": "Eastern Conference - First Round - 8 vs 1",
                    "record": 0,
                    "source": {
                        "id": "de42d52d-d1a1-453d-9a4e-66b8f7a5f71f",
                        "title": "Eastern Conference - First Round - 8 vs 1",
                        "round": 1,
                        "outcome": "win"
                    }
                }
            ],
            "games": []
        },
        {
            "id": "1cd7a2fb-1091-4d7d-9678-086fdd0a0fbe",
            "title": "Eastern Conference - Finals - TBD vs TBD",
            "round": 3,
            "start_date": "2025-05-21",
            "status": "scheduled",
            "participants": [
                {
                    "name": "Eastern Conference - Semifinals - TBD vs TBD",
                    "record": 0,
                    "source": {
                        "id": "21fe10ff-93f8-4ff9-a807-7fc70399d7af",
                        "title": "Eastern Conference - Semifinals - TBD vs TBD",
                        "round": 2,
                        "outcome": "win"
                    }
                },
                {
                    "name": "Eastern Conference - Semifinals - TBD vs TBD",
                    "record": 0,
                    "source": {
                        "id": "03328232-5e05-4db6-bac7-9d573c493bbd",
                        "title": "Eastern Conference - Semifinals - TBD vs TBD",
                        "round": 2,
                        "outcome": "win"
                    }
                }
            ],
            "games": [
                {
                    "id": "7d3c0c96-6be4-436e-affb-35a343035dc1",
                    "status": "scheduled",
                    "title": "Game 1",
                    "coverage": "full",
                    "scheduled": "2025-05-22T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "TNT",
                            "type": "TV",
                            "locale": "National",
                            "channel": "245"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "33a40cf2-4769-4edb-9df4-a14986e5ec18",
                    "status": "scheduled",
                    "title": "Game 2",
                    "coverage": "full",
                    "scheduled": "2025-05-24T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "TNT",
                            "type": "TV",
                            "locale": "National",
                            "channel": "245"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "c228ef43-e90b-4341-97bd-054b85df49ec",
                    "status": "scheduled",
                    "title": "Game 3",
                    "coverage": "full",
                    "scheduled": "2025-05-26T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "TNT",
                            "type": "TV",
                            "locale": "National",
                            "channel": "245"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "bdc401ff-e6d6-4623-a1f4-408705a915f3",
                    "status": "scheduled",
                    "title": "Game 4",
                    "coverage": "full",
                    "scheduled": "2025-05-28T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "TNT",
                            "type": "TV",
                            "locale": "National",
                            "channel": "245"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "d60841a9-6b9b-41da-bd82-1e59629542c3",
                    "status": "if-necessary",
                    "title": "Game 5 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-05-30T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "TNT",
                            "type": "TV",
                            "locale": "National",
                            "channel": "245"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "9912a6ef-0c5d-492f-a647-b9816850994e",
                    "status": "if-necessary",
                    "title": "Game 6 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-06-01T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "TNT",
                            "type": "TV",
                            "locale": "National",
                            "channel": "245"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "6d658b2a-46ce-4d68-9549-5a58e4cbd5d6",
                    "status": "if-necessary",
                    "title": "Game 7 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-06-03T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "TNT",
                            "type": "TV",
                            "locale": "National",
                            "channel": "245"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                }
            ]
        },
        {
            "id": "21fe10ff-93f8-4ff9-a807-7fc70399d7af",
            "title": "Eastern Conference - Semifinals - TBD vs TBD",
            "round": 2,
            "start_date": "2025-05-05",
            "status": "scheduled",
            "participants": [
                {
                    "name": "Eastern Conference - First Round - 7 vs 2",
                    "record": 0,
                    "source": {
                        "id": "fa14a964-f859-4f59-a2e0-d99753612770",
                        "title": "Eastern Conference - First Round - 7 vs 2",
                        "round": 1,
                        "outcome": "win"
                    }
                },
                {
                    "name": "Eastern Conference - First Round - 6 vs 3",
                    "record": 0,
                    "source": {
                        "id": "65e43c84-d635-47f8-ac22-6072d05f7204",
                        "title": "Eastern Conference - First Round - 6 vs 3",
                        "round": 1,
                        "outcome": "win"
                    }
                }
            ],
            "games": []
        },
        {
            "id": "23788824-4575-4cca-9e04-5d1d775e53e9",
            "title": "Western Conference - First Round - 7 vs 2",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        },
        {
            "id": "65e43c84-d635-47f8-ac22-6072d05f7204",
            "title": "Eastern Conference - First Round - 6 vs 3",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        },
        {
            "id": "724c917f-011c-4049-8d39-50a89ab60d6b",
            "title": "Western Conference - Semifinals - TBD vs TBD",
            "round": 2,
            "start_date": "2025-05-05",
            "status": "scheduled",
            "participants": [
                {
                    "name": "Western Conference - First Round - 6 vs 3",
                    "record": 0,
                    "source": {
                        "id": "da3460e6-c131-420d-aaac-be710a09d507",
                        "title": "Western Conference - First Round - 6 vs 3",
                        "round": 1,
                        "outcome": "win"
                    }
                },
                {
                    "name": "Western Conference - First Round - 7 vs 2",
                    "record": 0,
                    "source": {
                        "id": "23788824-4575-4cca-9e04-5d1d775e53e9",
                        "title": "Western Conference - First Round - 7 vs 2",
                        "round": 1,
                        "outcome": "win"
                    }
                }
            ],
            "games": []
        },
        {
            "id": "91ca7a01-d2ce-4206-8b21-63761036a408",
            "title": "Western Conference - Semifinals - TBD vs TBD",
            "round": 2,
            "start_date": "2025-05-05",
            "status": "scheduled",
            "participants": [
                {
                    "name": "Western Conference - First Round - 8 vs 1",
                    "record": 0,
                    "source": {
                        "id": "f886e6f4-0164-4c1e-acd2-5c4a6b91acf3",
                        "title": "Western Conference - First Round - 8 vs 1",
                        "round": 1,
                        "outcome": "win"
                    }
                },
                {
                    "name": "Western Conference - First Round - 5 vs 4",
                    "record": 0,
                    "source": {
                        "id": "c3c82bd6-43d0-4d1e-b39f-f36932a36976",
                        "title": "Western Conference - First Round - 5 vs 4",
                        "round": 1,
                        "outcome": "win"
                    }
                }
            ],
            "games": []
        },
        {
            "id": "aab2cbfc-a65b-4c1c-a2b5-5d5651f93057",
            "parent_id": "a8187e6d-8b68-40bc-9767-fe78cbda3311",
            "title": "NBA Finals - TBD vs TBD",
            "round": 4,
            "start_date": "2025-06-05",
            "status": "scheduled",
            "participants": [
                {
                    "name": "Western Conference - Finals - TBD vs TBD",
                    "record": 0,
                    "source": {
                        "id": "e382a18f-d220-4bbd-b521-2b075792343a",
                        "title": "Western Conference - Finals - TBD vs TBD",
                        "round": 3,
                        "outcome": "win"
                    }
                },
                {
                    "name": "Eastern Conference - Finals - TBD vs TBD",
                    "record": 0,
                    "source": {
                        "id": "1cd7a2fb-1091-4d7d-9678-086fdd0a0fbe",
                        "title": "Eastern Conference - Finals - TBD vs TBD",
                        "round": 3,
                        "outcome": "win"
                    }
                }
            ],
            "games": [
                {
                    "id": "2288617a-4a44-440a-ae72-88928d36c637",
                    "status": "time-tbd",
                    "title": "Game 1",
                    "coverage": "full",
                    "scheduled": "2025-06-05T17:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "47ed63a4-16b1-40d2-af78-4b01cec36024",
                    "status": "time-tbd",
                    "title": "Game 2",
                    "coverage": "full",
                    "scheduled": "2025-06-08T17:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "85a3bd42-d89d-441b-bf1b-88f8e8eca60c",
                    "status": "time-tbd",
                    "title": "Game 3",
                    "coverage": "full",
                    "scheduled": "2025-06-11T17:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "8522459e-1c09-4848-b087-af3c9d1bfc65",
                    "status": "time-tbd",
                    "title": "Game 4",
                    "coverage": "full",
                    "scheduled": "2025-06-13T17:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "5c7cd68d-6980-4adc-b877-debb7bf09ae9",
                    "status": "if-necessary",
                    "title": "Game 5 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-06-16T17:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "31e10527-4fdf-4ccc-8769-0325ba706ff3",
                    "status": "if-necessary",
                    "title": "Game 6 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-06-19T17:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "46d06a7e-139b-4d86-89e5-f797a12ecf5e",
                    "status": "if-necessary",
                    "title": "Game 7 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-06-22T17:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                }
            ]
        },
        {
            "id": "b9897ae5-9dc4-4c87-9264-196376614e60",
            "title": "Eastern Conference - First Round - 5 vs 4",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        },
        {
            "id": "c3c82bd6-43d0-4d1e-b39f-f36932a36976",
            "title": "Western Conference - First Round - 5 vs 4",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        },
        {
            "id": "da3460e6-c131-420d-aaac-be710a09d507",
            "title": "Western Conference - First Round - 6 vs 3",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        },
        {
            "id": "de42d52d-d1a1-453d-9a4e-66b8f7a5f71f",
            "title": "Eastern Conference - First Round - 8 vs 1",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        },
        {
            "id": "e382a18f-d220-4bbd-b521-2b075792343a",
            "title": "Western Conference - Finals - TBD vs TBD",
            "round": 3,
            "start_date": "2025-05-20",
            "status": "scheduled",
            "participants": [
                {
                    "name": "Western Conference - Semifinals - TBD vs TBD",
                    "record": 0,
                    "source": {
                        "id": "724c917f-011c-4049-8d39-50a89ab60d6b",
                        "title": "Western Conference - Semifinals - TBD vs TBD",
                        "round": 2,
                        "outcome": "win"
                    }
                },
                {
                    "name": "Western Conference - Semifinals - TBD vs TBD",
                    "record": 0,
                    "source": {
                        "id": "91ca7a01-d2ce-4206-8b21-63761036a408",
                        "title": "Western Conference - Semifinals - TBD vs TBD",
                        "round": 2,
                        "outcome": "win"
                    }
                }
            ],
            "games": [
                {
                    "id": "07d0fb78-4a96-470d-ba3a-c59f5b86fdd6",
                    "status": "scheduled",
                    "title": "Game 1",
                    "coverage": "full",
                    "scheduled": "2025-05-21T00:30:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ESPN",
                            "type": "TV",
                            "locale": "National",
                            "channel": "206"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "da963689-db3e-424c-8465-75c9bffc9266",
                    "status": "scheduled",
                    "title": "Game 2",
                    "coverage": "full",
                    "scheduled": "2025-05-23T00:30:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ESPN",
                            "type": "TV",
                            "locale": "National",
                            "channel": "206"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "d018cf8b-fc84-4201-a719-ae4ee9b47d54",
                    "status": "scheduled",
                    "title": "Game 3",
                    "coverage": "full",
                    "scheduled": "2025-05-25T00:30:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ABC",
                            "type": "TV",
                            "locale": "National"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "95cda9da-009d-4869-a9ab-e5462ad1292a",
                    "status": "scheduled",
                    "title": "Game 4",
                    "coverage": "full",
                    "scheduled": "2025-05-27T00:30:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ESPN",
                            "type": "TV",
                            "locale": "National",
                            "channel": "206"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "cbf67496-d405-4a87-876c-9dde69772bfa",
                    "status": "if-necessary",
                    "title": "Game 5 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-05-29T00:30:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ESPN",
                            "type": "TV",
                            "locale": "National",
                            "channel": "206"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "b08315a7-4ae0-4661-a408-c2a2da3f0c80",
                    "status": "if-necessary",
                    "title": "Game 6 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-05-31T00:30:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ESPN",
                            "type": "TV",
                            "locale": "National",
                            "channel": "206"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                },
                {
                    "id": "8b307e2a-c8f2-4ca6-8557-1381f16412b5",
                    "status": "if-necessary",
                    "title": "Game 7 (if necessary)",
                    "coverage": "full",
                    "scheduled": "2025-06-02T00:00:00+00:00",
                    "neutral_site": false,
                    "track_on_court": true,
                    "broadcasts": [
                        {
                            "network": "ESPN",
                            "type": "TV",
                            "locale": "National",
                            "channel": "206"
                        }
                    ],
                    "home": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    },
                    "away": {
                        "name": "Team TBD",
                        "alias": "TBD",
                        "id": "907dc4e5-6957-4d19-b7d4-b1b7003b91e6"
                    }
                }
            ]
        },
        {
            "id": "f886e6f4-0164-4c1e-acd2-5c4a6b91acf3",
            "title": "Western Conference - First Round - 8 vs 1",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        },
        {
            "id": "fa14a964-f859-4f59-a2e0-d99753612770",
            "title": "Eastern Conference - First Round - 7 vs 2",
            "round": 1,
            "start_date": "2025-04-19",
            "status": "scheduled",
            "participants": [],
            "games": []
        }
    ]
}
<league xmlns="http://feed.elasticstats.com/schema/basketball/schedule-v8.0.xsd" id="4353138d-4c22-4396-95d8-5f587d2df25c" name="NBA" alias="NBA">
  <season-schedule id="64bb5ffa-bd55-4ea3-b7f8-efc4959c1187" year="2024" type="PST">
    <series id="03328232-5e05-4db6-bac7-9d573c493bbd" title="Eastern Conference - Semifinals - TBD vs TBD" round="2" start_date="2025-05-05" status="scheduled">
      <participant name="Eastern Conference - First Round - 5 vs 4" record="0">
        <source id="b9897ae5-9dc4-4c87-9264-196376614e60" title="Eastern Conference - First Round - 5 vs 4" round="1" outcome="win"/>
      </participant>
      <participant name="Eastern Conference - First Round - 8 vs 1" record="0">
        <source id="de42d52d-d1a1-453d-9a4e-66b8f7a5f71f" title="Eastern Conference - First Round - 8 vs 1" round="1" outcome="win"/>
      </participant>
      <games>
      </games>
    </series>
    <series id="1cd7a2fb-1091-4d7d-9678-086fdd0a0fbe" title="Eastern Conference - Finals - TBD vs TBD" round="3" start_date="2025-05-21" status="scheduled">
      <participant name="Eastern Conference - Semifinals - TBD vs TBD" record="0">
        <source id="21fe10ff-93f8-4ff9-a807-7fc70399d7af" title="Eastern Conference - Semifinals - TBD vs TBD" round="2" outcome="win"/>
      </participant>
      <participant name="Eastern Conference - Semifinals - TBD vs TBD" record="0">
        <source id="03328232-5e05-4db6-bac7-9d573c493bbd" title="Eastern Conference - Semifinals - TBD vs TBD" round="2" outcome="win"/>
      </participant>
      <games>
        <game id="7d3c0c96-6be4-436e-affb-35a343035dc1" status="scheduled" title="Game 1" coverage="full" scheduled="2025-05-22T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="TNT" type="TV" locale="National" channel="245"/>
          </broadcasts>
        </game>
        <game id="33a40cf2-4769-4edb-9df4-a14986e5ec18" status="scheduled" title="Game 2" coverage="full" scheduled="2025-05-24T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="TNT" type="TV" locale="National" channel="245"/>
          </broadcasts>
        </game>
        <game id="c228ef43-e90b-4341-97bd-054b85df49ec" status="scheduled" title="Game 3" coverage="full" scheduled="2025-05-26T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="TNT" type="TV" locale="National" channel="245"/>
          </broadcasts>
        </game>
        <game id="bdc401ff-e6d6-4623-a1f4-408705a915f3" status="scheduled" title="Game 4" coverage="full" scheduled="2025-05-28T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="TNT" type="TV" locale="National" channel="245"/>
          </broadcasts>
        </game>
        <game id="d60841a9-6b9b-41da-bd82-1e59629542c3" status="if-necessary" title="Game 5 (if necessary)" coverage="full" scheduled="2025-05-30T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="TNT" type="TV" locale="National" channel="245"/>
          </broadcasts>
        </game>
        <game id="9912a6ef-0c5d-492f-a647-b9816850994e" status="if-necessary" title="Game 6 (if necessary)" coverage="full" scheduled="2025-06-01T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="TNT" type="TV" locale="National" channel="245"/>
          </broadcasts>
        </game>
        <game id="6d658b2a-46ce-4d68-9549-5a58e4cbd5d6" status="if-necessary" title="Game 7 (if necessary)" coverage="full" scheduled="2025-06-03T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="TNT" type="TV" locale="National" channel="245"/>
          </broadcasts>
        </game>
      </games>
    </series>
    <series id="21fe10ff-93f8-4ff9-a807-7fc70399d7af" title="Eastern Conference - Semifinals - TBD vs TBD" round="2" start_date="2025-05-05" status="scheduled">
      <participant name="Eastern Conference - First Round - 7 vs 2" record="0">
        <source id="fa14a964-f859-4f59-a2e0-d99753612770" title="Eastern Conference - First Round - 7 vs 2" round="1" outcome="win"/>
      </participant>
      <participant name="Eastern Conference - First Round - 6 vs 3" record="0">
        <source id="65e43c84-d635-47f8-ac22-6072d05f7204" title="Eastern Conference - First Round - 6 vs 3" round="1" outcome="win"/>
      </participant>
      <games>
      </games>
    </series>
    <series id="23788824-4575-4cca-9e04-5d1d775e53e9" title="Western Conference - First Round - 7 vs 2" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
    <series id="65e43c84-d635-47f8-ac22-6072d05f7204" title="Eastern Conference - First Round - 6 vs 3" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
    <series id="724c917f-011c-4049-8d39-50a89ab60d6b" title="Western Conference - Semifinals - TBD vs TBD" round="2" start_date="2025-05-05" status="scheduled">
      <participant name="Western Conference - First Round - 6 vs 3" record="0">
        <source id="da3460e6-c131-420d-aaac-be710a09d507" title="Western Conference - First Round - 6 vs 3" round="1" outcome="win"/>
      </participant>
      <participant name="Western Conference - First Round - 7 vs 2" record="0">
        <source id="23788824-4575-4cca-9e04-5d1d775e53e9" title="Western Conference - First Round - 7 vs 2" round="1" outcome="win"/>
      </participant>
      <games>
      </games>
    </series>
    <series id="91ca7a01-d2ce-4206-8b21-63761036a408" title="Western Conference - Semifinals - TBD vs TBD" round="2" start_date="2025-05-05" status="scheduled">
      <participant name="Western Conference - First Round - 8 vs 1" record="0">
        <source id="f886e6f4-0164-4c1e-acd2-5c4a6b91acf3" title="Western Conference - First Round - 8 vs 1" round="1" outcome="win"/>
      </participant>
      <participant name="Western Conference - First Round - 5 vs 4" record="0">
        <source id="c3c82bd6-43d0-4d1e-b39f-f36932a36976" title="Western Conference - First Round - 5 vs 4" round="1" outcome="win"/>
      </participant>
      <games>
      </games>
    </series>
    <series id="aab2cbfc-a65b-4c1c-a2b5-5d5651f93057" parent_id="a8187e6d-8b68-40bc-9767-fe78cbda3311" title="NBA Finals - TBD vs TBD" round="4" start_date="2025-06-05" status="scheduled">
      <participant name="Western Conference - Finals - TBD vs TBD" record="0">
        <source id="e382a18f-d220-4bbd-b521-2b075792343a" title="Western Conference - Finals - TBD vs TBD" round="3" outcome="win"/>
      </participant>
      <participant name="Eastern Conference - Finals - TBD vs TBD" record="0">
        <source id="1cd7a2fb-1091-4d7d-9678-086fdd0a0fbe" title="Eastern Conference - Finals - TBD vs TBD" round="3" outcome="win"/>
      </participant>
      <games>
        <game id="2288617a-4a44-440a-ae72-88928d36c637" status="time-tbd" title="Game 1" coverage="full" scheduled="2025-06-05T17:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
        <game id="47ed63a4-16b1-40d2-af78-4b01cec36024" status="time-tbd" title="Game 2" coverage="full" scheduled="2025-06-08T17:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
        <game id="85a3bd42-d89d-441b-bf1b-88f8e8eca60c" status="time-tbd" title="Game 3" coverage="full" scheduled="2025-06-11T17:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
        <game id="8522459e-1c09-4848-b087-af3c9d1bfc65" status="time-tbd" title="Game 4" coverage="full" scheduled="2025-06-13T17:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
        <game id="5c7cd68d-6980-4adc-b877-debb7bf09ae9" status="if-necessary" title="Game 5 (if necessary)" coverage="full" scheduled="2025-06-16T17:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
        <game id="31e10527-4fdf-4ccc-8769-0325ba706ff3" status="if-necessary" title="Game 6 (if necessary)" coverage="full" scheduled="2025-06-19T17:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
        <game id="46d06a7e-139b-4d86-89e5-f797a12ecf5e" status="if-necessary" title="Game 7 (if necessary)" coverage="full" scheduled="2025-06-22T17:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
      </games>
    </series>
    <series id="b9897ae5-9dc4-4c87-9264-196376614e60" title="Eastern Conference - First Round - 5 vs 4" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
    <series id="c3c82bd6-43d0-4d1e-b39f-f36932a36976" title="Western Conference - First Round - 5 vs 4" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
    <series id="da3460e6-c131-420d-aaac-be710a09d507" title="Western Conference - First Round - 6 vs 3" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
    <series id="de42d52d-d1a1-453d-9a4e-66b8f7a5f71f" title="Eastern Conference - First Round - 8 vs 1" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
    <series id="e382a18f-d220-4bbd-b521-2b075792343a" title="Western Conference - Finals - TBD vs TBD" round="3" start_date="2025-05-20" status="scheduled">
      <participant name="Western Conference - Semifinals - TBD vs TBD" record="0">
        <source id="724c917f-011c-4049-8d39-50a89ab60d6b" title="Western Conference - Semifinals - TBD vs TBD" round="2" outcome="win"/>
      </participant>
      <participant name="Western Conference - Semifinals - TBD vs TBD" record="0">
        <source id="91ca7a01-d2ce-4206-8b21-63761036a408" title="Western Conference - Semifinals - TBD vs TBD" round="2" outcome="win"/>
      </participant>
      <games>
        <game id="07d0fb78-4a96-470d-ba3a-c59f5b86fdd6" status="scheduled" title="Game 1" coverage="full" scheduled="2025-05-21T00:30:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ESPN" type="TV" locale="National" channel="206"/>
          </broadcasts>
        </game>
        <game id="da963689-db3e-424c-8465-75c9bffc9266" status="scheduled" title="Game 2" coverage="full" scheduled="2025-05-23T00:30:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ESPN" type="TV" locale="National" channel="206"/>
          </broadcasts>
        </game>
        <game id="d018cf8b-fc84-4201-a719-ae4ee9b47d54" status="scheduled" title="Game 3" coverage="full" scheduled="2025-05-25T00:30:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ABC" type="TV" locale="National"/>
          </broadcasts>
        </game>
        <game id="95cda9da-009d-4869-a9ab-e5462ad1292a" status="scheduled" title="Game 4" coverage="full" scheduled="2025-05-27T00:30:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ESPN" type="TV" locale="National" channel="206"/>
          </broadcasts>
        </game>
        <game id="cbf67496-d405-4a87-876c-9dde69772bfa" status="if-necessary" title="Game 5 (if necessary)" coverage="full" scheduled="2025-05-29T00:30:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ESPN" type="TV" locale="National" channel="206"/>
          </broadcasts>
        </game>
        <game id="b08315a7-4ae0-4661-a408-c2a2da3f0c80" status="if-necessary" title="Game 6 (if necessary)" coverage="full" scheduled="2025-05-31T00:30:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ESPN" type="TV" locale="National" channel="206"/>
          </broadcasts>
        </game>
        <game id="8b307e2a-c8f2-4ca6-8557-1381f16412b5" status="if-necessary" title="Game 7 (if necessary)" coverage="full" scheduled="2025-06-02T00:00:00+00:00" neutral_site="false" track_on_court="true" home_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6" away_team="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          <time_zones/>
          <home name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </home>
          <away name="Team TBD" alias="TBD" id="907dc4e5-6957-4d19-b7d4-b1b7003b91e6">
          </away>
          <broadcasts>
            <broadcast network="ESPN" type="TV" locale="National" channel="206"/>
          </broadcasts>
        </game>
      </games>
    </series>
    <series id="f886e6f4-0164-4c1e-acd2-5c4a6b91acf3" title="Western Conference - First Round - 8 vs 1" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
    <series id="fa14a964-f859-4f59-a2e0-d99753612770" title="Eastern Conference - First Round - 7 vs 2" round="1" start_date="2025-04-19" status="scheduled">
      <games>
      </games>
    </series>
  </season-schedule>
</league>

As playoff matchups are determined — and the play-in games are completed — the TBD placeholders are replaced with the actual team names and ids. All schedule info is updated in realtime as changes are made.

👍

Tip - Start Building Your Bracket

Use this schedule info to start constructing a playoff bracket. By querying the Series Schedule, you can populate the bracket with matchups, scheduling details, and eventually, the teams as they become available.

Click for a visual representation of a completed bracket


3. In Progress Playoff Data

Schedule

Continue to retrieve the Series Schedule endpoint for updates to the playoff bracket as games are played. Teams advance to the next round on a 2-minute timer after the final game of a series moves to complete status.

Game Data

All game-centric feeds feature the same structure, coverage level, and update process as a regular season game. Use the unique game id from the Series Schedule endpoint to retrieve the game data. Game feeds are: Game Boxscore, Game Play-by-Play, Game Summary, Push Clock, Push Events, and Push Statistics.

See our Standard Game Workflow page for additional detail.

Series Data

Along with tracking live games, you can use the Series Statistics endpoint to pull team and player statistics for each playoff series. Here are some update frequencies to keep in mind for this endpoint:

  • Series Statistics updates on a 5-minute timer after a game is moved to closed
  • To receive the fastest updates, call the endpoint 5 to 10 minutes after a game is moved to closed. Otherwise, utilize this feed on an as needed basis.

This endpoint requires a series_id and team_id, located in the Series Schedule endpoint. Request this endpoint for each series and its teams to retrieve all playoff series stats.

Click to view a Series Statistics sample
{
  "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
      }
    }
  ]
}


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 prize money.

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 plays 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 plays 82 regular season games.


Season Types

The In-Season Tournament is denoted with the season type IST. This type can be retrieved via the Seasons endpoint:

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 endpoints:

  • 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 endpoint 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.