Integration GuidesReference Docs
Coverage MatrixDocumentationChange LogLog InContact Us
Integration Guides

March Madness

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

Introduction to March Madness

In college basketball, the NCAA Men's Basketball (NCAAMB) tournaments, often referred to as March Madness, are single-elimination events held after the regular season to crown the national champion. The Division I (D1) tournament, featuring 68 teams from various conferences, is the most prominent, with teams eliminated in each round until two remain for the national championship.

Unlike the NBA's best-of-seven format, March Madness follows a single-elimination format, meaning teams must win each game to advance to the next round. The tournament consists of several rounds, starting with the First Four, then moving to the First Round, Second Round, Sweet 16, Elite Eight, Final Four, and ultimately the National Championship. Teams are eliminated after a single loss, creating high-stakes games throughout the tournament.


Tournaments We Cover

While the D1 March Madness tournament draws the most attention, we also provide coverage of all other division tournaments, including Conference Tournaments.



Access March Madness data using these feeds:

  1. Use the Tournament List feed to access a list of all tournaments scheduled for the given season including tournament name, location, start date, and end date.
  2. The Tournament Schedule endpoint provides the date, time, location, and other event details for every match-up taking place for a given tournament.
  3. The Tournament Statistics detailed team and player statistics for the defined tournament.
  4. The Tournament Summary provides tournament information including location, status, start date, end date, set up and participants.

Workflow and Samples

Sportradar's data entry experts will have the entire field input within 2 hours of the announcements on Selection Sunday.

Prior to the matchup announcements, the Tournament Schedule and Tournament Summary feeds will return 200 results with basic Regional bracket information included. To access these feeds, you must input the NCAA Men's Division I Basketball Tournament unique ID, found in the Tournament List feed. See below for sample data.


Tournament Samples

Pre-Selection Sunday
Tournament Schedule - Tournament Summary

During the matchup announcements all available team and schedule data is added to each feed. See below for sample data.

Selection Sunday - Top 4 Seeds Announced (Region Rank Included)
Tournament Schedule - Tournament Summary

Selection Sunday - Midway Through Announcement
Tournament Schedule - Tournament Summary

After Selection Sunday
The below sample provides the behavior of the Schedule and Summary feeds after all Selection Sunday matchups have been announced and populated in our feeds.

All tournament games are included, with team id and seed omitted for TBD matchups. Teams are promoted to the next round within 10 minutes of complete status (when a game has ended and the final score confirmed) of the prior game.
Tournament Schedule - Tournament Summary

Completed Bracket
You can reference a completed Division I Tournament bracket here and here.


Live Tournament Coverage

Men’s: All games are covered via full coverage with substitution data. Realtime data includes:

  • Full play-by-play
  • Team statistics
  • Player statistics (including player minutes and plus/minus)

Women’s: All games are covered via full coverage. Realtime data includes:

  • Full play-by-play
  • Team statistics
  • Player statistics (no realtime player minutes or plus/minus)

Please note that the game time for March Madness games will be adjusted in the schedule feeds if the game time is changed by the broadcast network.


Postgame Coverage

Tournament Schedule:
Teams are promoted to the next round within 10 minutes of complete status (when a game has ended and the final score confirmed) of the prior game.

Tournament Statistics:
Team statistics will be updated in the Tournament Statistics endpoint within 20 minutes after a game goes to closed status.

On average, it takes about 30 minutes to close a men’s game. As a result, on average, it takes approximately an hour for team statistics to update after a game ends.


March Madness FAQ

How do I know the order or position (top left, bottom left, etc) in the bracket for each region?

In the Tournament Summary endpoint, each region has a rank value. The region's position in the bracket is based on that rank value.

  • Top Left Quadrant: Regional Rank = 1 - South Regional in Example Provided
  • Bottom Left Quadrant: Regional Rank = 4 - West Regional in Example Provided
  • Top Right Quadrant: Regional Rank = 2 - East Regional In Example Provided
  • Bottom Right Quadrant: Regional Rank = 3 - Midwest Regional in Example Provided

The region rank value will be populated as soon as each number 1 seed is announced (top 4 overall seeds in the tournament) at the start of the Selection Sunday show.



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 NCAAMB season, you would use 2024 as the value for the season parameter.



Building Your March Madness Bracket


1. Get the March Madness Tournament ID

  • Call the Tournament List endpoint to access a list of tournaments for the NCAA Men's Basketball postseason PST.
  • Use the id for the NCAA Men's Division I Basketball Tournament.

📆

March Madness Schedule Availability

Sportradar's data entry experts will have the entire field input within 2 hours of the announcements on Selection Sunday.

Prior to the matchup announcements, the Tournament Schedule and Tournament Summary feeds will return 200 results with basic Regional bracket information included.

The following samples shows a list of games for the Play-In Tournament for the NCAAMB 2024 postseason.

{
  "league": {
    "id": "cd4268ee-07aa-4c4d-a435-ec44ad2c76cb",
    "name": "NCAA MEN",
    "alias": "NCAAM"
  },
  "season": {
    "id": "b2e4c0e0-5571-47c3-ab8b-1db65d74234e",
    "year": 2024,
    "type": "PST"
  },
  "tournaments": [
    {
      "id": "56befd3f-4024-47c4-900f-892883cc1b6b",
      "name": "NCAA Men's Division I Basketball Tournament",
      "location": "San Antonio, TX, USA",
      "status": "scheduled",
      "start_date": "2025-03-18",
      "end_date": "2025-04-07"
    },
    {
      "id": "7282f16a-3017-4a54-a278-49a892ea3524",
      "name": "CIT",
      "location": "Campus Sites",
      "status": "scheduled"
    },
    {
      "id": "9da2acf6-d307-44bd-820b-5762cad8eb70",
      "name": "CBI",
      "location": "Daytona Beach, FL, USA",
      "status": "scheduled"
    },
    {
      "id": "a6628975-3045-407a-9d38-4369cf5a6125",
      "name": "NIT",
      "location": "Campus Sites",
      "status": "scheduled",
      "start_date": "2025-03-18",
      "end_date": "2025-04-03"
    }
  ]
}

2. Pull the Tournament Schedule

Using the tournament id, pull the Tournament Schedule endpoint to get game details for the March Madness matchup.

The following shows the structure of the for a schedule that isn't populated yet. You can use this structure to begin setting up your bracket.

{
  "id": "56befd3f-4024-47c4-900f-892883cc1b6b",
  "name": "NCAA Men's Division I Basketball Tournament",
  "location": "San Antonio, TX, USA",
  "status": "scheduled",
  "league": {
    "id": "cd4268ee-07aa-4c4d-a435-ec44ad2c76cb",
    "name": "NCAA MEN",
    "alias": "NCAAM"
  },
  "season": {
    "id": "b2e4c0e0-5571-47c3-ab8b-1db65d74234e",
    "year": 2024,
    "type": "PST"
  },
  "rounds": [
    {
      "id": "a5a07c91-5616-49e9-9248-6e8974d698b9",
      "sequence": 1,
      "name": "First Four",
      "games": [],
      "bracketed": []
    },
    {
      "id": "1954736c-4e48-46b4-925b-08710a858fac",
      "sequence": 2,
      "name": "First Round",
      "games": [],
      "bracketed": []
    },
    {
      "id": "1b30068a-dcd5-4512-a282-bc33e82304a0",
      "sequence": 3,
      "name": "Second Round",
      "games": [],
      "bracketed": []
    },
    {
      "id": "cd7d01da-75f7-4588-9078-c37216889d2b",
      "sequence": 4,
      "name": "Sweet 16",
      "games": [],
      "bracketed": []
    },
    {
      "id": "aaa1d967-a025-46f2-9fad-b1b69f06f0f8",
      "sequence": 5,
      "name": "Elite Eight",
      "games": [],
      "bracketed": []
    },
    {
      "id": "a63ac337-baec-4898-aa3f-a240cfe0618b",
      "sequence": 6,
      "name": "Final Four",
      "games": [],
      "bracketed": []
    },
    {
      "id": "a5f27e33-0ccb-48a8-b621-cf333a1040a3",
      "sequence": 7,
      "name": "National Championship",
      "games": [],
      "bracketed": []
    }
  ]
}

Team TBD:

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

👍

Tip - Start Building Your Bracket

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

Here is a preview of a partially completed schedule for the first round of the East Regional for the 2023 March Madness tournament, demonstrating how games and team matchups will appear as data is populated.

{
"bracket": {
            "id": "9d2a7eb7-844a-4942-9e8c-cbb9c065f4a7",
            "name": "East Regional",
            "location": "Boston, MA, USA",
            "rank": 1
          },
          "games": [
            {
              "id": "639fcc82-558b-495a-946f-33ed4e9b69a6",
              "status": "closed",
              "title": "East Regional - First Round - Game 5",
              "coverage": "full",
              "scheduled": "2024-03-21T16:40:00+00:00",
              "home_points": 67,
              "away_points": 71,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Central",
                "home": "US/Mountain",
                "away": "US/Eastern"
              },
              "venue": {
                "id": "41b29fbb-906a-4aca-b261-6a816ca96428",
                "name": "CHI Health Center Omaha",
                "capacity": 18320,
                "address": "455 North 10th Street",
                "city": "Omaha",
                "state": "NE",
                "zip": "68102",
                "country": "USA",
                "location": {
                  "lat": "41.262667",
                  "lng": "-95.928206"
                }
              },
              "broadcasts": [
                {
                  "network": "truTV",
                  "type": "TV",
                  "locale": "National",
                  "channel": "246"
                }
              ],
              "home": {
                "name": "BYU Cougars",
                "alias": "BYU",
                "id": "c31455b2-8a45-4248-aa8f-ce7eab1c6b02",
                "seed": 6
              },
              "away": {
                "name": "Duquesne Dukes",
                "alias": "DUQ",
                "id": "fea46ac5-6dad-43cd-a770-75554dbcc118",
                "seed": 11
              }
            },
            {
              "id": "8aba71db-f155-459a-bf04-c2b140e9fa3a",
              "status": "closed",
              "title": "East Regional - First Round - Game 6",
              "coverage": "full",
              "scheduled": "2024-03-21T19:34:00+00:00",
              "home_points": 85,
              "away_points": 69,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Central",
                "home": "US/Central",
                "away": "US/Eastern"
              },
              "venue": {
                "id": "41b29fbb-906a-4aca-b261-6a816ca96428",
                "name": "CHI Health Center Omaha",
                "capacity": 18320,
                "address": "455 North 10th Street",
                "city": "Omaha",
                "state": "NE",
                "zip": "68102",
                "country": "USA",
                "location": {
                  "lat": "41.262667",
                  "lng": "-95.928206"
                }
              },
              "broadcasts": [
                {
                  "network": "truTV",
                  "type": "TV",
                  "locale": "National",
                  "channel": "246"
                }
              ],
              "home": {
                "name": "Illinois Fighting Illini",
                "alias": "ILL",
                "id": "150148c2-ca8f-414f-8f41-d94a55d4a122",
                "seed": 3
              },
              "away": {
                "name": "Morehead State Eagles",
                "alias": "MORE",
                "id": "b7747a03-c85b-4de6-94bf-1b5b68553248",
                "seed": 14
              }
            },
            {
              "id": "7a1170ef-0901-4fe9-a7a5-90e5afcf1c9e",
              "status": "closed",
              "title": "East Regional - First Round - Game 3",
              "coverage": "full",
              "scheduled": "2024-03-22T17:45:00+00:00",
              "home_points": 69,
              "away_points": 65,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Pacific",
                "home": "US/Pacific",
                "away": "US/Central"
              },
              "venue": {
                "id": "b665b238-e25c-4726-87ab-58f8c694376b",
                "name": "Spokane Veterans Memorial Arena",
                "capacity": 12210,
                "address": "720 W. Mallon Avenue",
                "city": "Spokane",
                "state": "WA",
                "zip": "99201",
                "country": "USA",
                "location": {
                  "lat": "47.666",
                  "lng": "-117.423"
                }
              },
              "broadcasts": [
                {
                  "network": "TNT",
                  "type": "TV",
                  "locale": "National",
                  "channel": "245"
                }
              ],
              "home": {
                "name": "San Diego State Aztecs",
                "alias": "SDSU",
                "id": "e6914f16-ca37-4d2e-ba26-a425910283e2",
                "seed": 5
              },
              "away": {
                "name": "UAB Blazers",
                "alias": "UAB",
                "id": "63a8fdcf-b51b-4de3-8a57-2a6e41d362ce",
                "seed": 12
              }
            },
            {
              "id": "4d8025b9-cf62-4600-8a3f-c3cfd832b735",
              "status": "closed",
              "title": "East Regional - First Round - Game 4",
              "coverage": "full",
              "scheduled": "2024-03-22T20:33:00+00:00",
              "home_points": 76,
              "away_points": 78,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Pacific",
                "home": "US/Central",
                "away": "US/Eastern"
              },
              "venue": {
                "id": "b665b238-e25c-4726-87ab-58f8c694376b",
                "name": "Spokane Veterans Memorial Arena",
                "capacity": 12210,
                "address": "720 W. Mallon Avenue",
                "city": "Spokane",
                "state": "WA",
                "zip": "99201",
                "country": "USA",
                "location": {
                  "lat": "47.666",
                  "lng": "-117.423"
                }
              },
              "broadcasts": [
                {
                  "network": "TNT",
                  "type": "TV",
                  "locale": "National",
                  "channel": "245"
                }
              ],
              "home": {
                "name": "Auburn Tigers",
                "alias": "AUB",
                "id": "0c0608b3-f349-4f5e-9a10-7e6a744dd0d2",
                "seed": 4
              },
              "away": {
                "name": "Yale Bulldogs",
                "alias": "YALE",
                "id": "ca478771-aa3d-4231-81e0-b70f519134fb",
                "seed": 13
              }
            },
            {
              "id": "cd585692-c7d3-4614-b38f-0b905e4c13a9",
              "status": "closed",
              "title": "East Regional - First Round - Game 1",
              "coverage": "full",
              "scheduled": "2024-03-22T19:22:00+00:00",
              "home_points": 91,
              "away_points": 52,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Eastern",
                "home": "US/Eastern",
                "away": "US/Eastern"
              },
              "venue": {
                "id": "7a330bcd-ac0f-50ca-bc29-2460e5c476b3",
                "name": "Barclays Center",
                "capacity": 17732,
                "address": "620 Atlantic Avenue",
                "city": "Brooklyn",
                "state": "NY",
                "zip": "11217",
                "country": "USA",
                "location": {
                  "lat": "40.682957",
                  "lng": "-73.975165"
                }
              },
              "broadcasts": [
                {
                  "network": "CBS",
                  "type": "TV",
                  "locale": "National"
                }
              ],
              "home": {
                "name": "UConn Huskies",
                "alias": "CONN",
                "id": "efba5350-79bc-47aa-a189-db177b95b491",
                "seed": 1
              },
              "away": {
                "name": "Stetson Hatters",
                "alias": "STET",
                "id": "394d1b2b-7a19-4d43-b04a-5f366c24e5bf",
                "seed": 16
              }
            },
            {
              "id": "75199dd2-3af3-4c2a-af6e-6be23ce6998c",
              "status": "closed",
              "title": "East Regional - First Round - Game 2",
              "coverage": "full",
              "scheduled": "2024-03-22T16:15:00+00:00",
              "home_points": 65,
              "away_points": 77,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Eastern",
                "home": "US/Eastern",
                "away": "US/Central"
              },
              "venue": {
                "id": "7a330bcd-ac0f-50ca-bc29-2460e5c476b3",
                "name": "Barclays Center",
                "capacity": 17732,
                "address": "620 Atlantic Avenue",
                "city": "Brooklyn",
                "state": "NY",
                "zip": "11217",
                "country": "USA",
                "location": {
                  "lat": "40.682957",
                  "lng": "-73.975165"
                }
              },
              "broadcasts": [
                {
                  "network": "CBS",
                  "type": "TV",
                  "locale": "National"
                }
              ],
              "home": {
                "name": "Florida Atlantic Owls",
                "alias": "FAU",
                "id": "c851131a-5ecd-4670-81bc-b40f4837dd65",
                "seed": 8
              },
              "away": {
                "name": "Northwestern Wildcats",
                "alias": "NW",
                "id": "4b7dedc0-7b48-49a4-aad6-8a94a33274d2",
                "seed": 9
              }
            },
            {
              "id": "0a620548-643e-4ac5-bfc1-bb9583d144e7",
              "status": "closed",
              "title": "East Regional - First Round - Game 8",
              "coverage": "full",
              "scheduled": "2024-03-21T23:40:00+00:00",
              "home_points": 82,
              "away_points": 65,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Central",
                "home": "US/Central",
                "away": "US/Central"
              },
              "venue": {
                "id": "41b29fbb-906a-4aca-b261-6a816ca96428",
                "name": "CHI Health Center Omaha",
                "capacity": 18320,
                "address": "455 North 10th Street",
                "city": "Omaha",
                "state": "NE",
                "zip": "68102",
                "country": "USA",
                "location": {
                  "lat": "41.262667",
                  "lng": "-95.928206"
                }
              },
              "broadcasts": [
                {
                  "network": "truTV",
                  "type": "TV",
                  "locale": "National",
                  "channel": "246"
                }
              ],
              "home": {
                "name": "Iowa State Cyclones",
                "alias": "ISU",
                "id": "0e4258fa-3154-4c16-b693-adecab184c6c",
                "seed": 2
              },
              "away": {
                "name": "South Dakota State Jackrabbits",
                "alias": "SDST",
                "id": "6ef40534-5fad-4755-84de-7dcbd645d1f0",
                "seed": 15
              }
            },
            {
              "id": "57be8791-89bf-4fa9-b121-9e4b16373d92",
              "status": "closed",
              "title": "East Regional - First Round - Game 7",
              "coverage": "full",
              "scheduled": "2024-03-22T02:15:00+00:00",
              "home_points": 66,
              "away_points": 61,
              "neutral_site": true,
              "conference_game": false,
              "track_on_court": true,
              "time_zones": {
                "venue": "US/Central",
                "home": "US/Pacific",
                "away": "US/Central"
              },
              "venue": {
                "id": "41b29fbb-906a-4aca-b261-6a816ca96428",
                "name": "CHI Health Center Omaha",
                "capacity": 18320,
                "address": "455 North 10th Street",
                "city": "Omaha",
                "state": "NE",
                "zip": "68102",
                "country": "USA",
                "location": {
                  "lat": "41.262667",
                  "lng": "-95.928206"
                }
              },
              "broadcasts": [
                {
                  "network": "truTV",
                  "type": "TV",
                  "locale": "National",
                  "channel": "246"
                }
              ],
              "home": {
                "name": "Washington State Cougars",
                "alias": "WSU",
                "id": "2d4f0015-adb4-4877-8c15-4a6eed7eed03",
                "seed": 7
              },
              "away": {
                "name": "Drake Bulldogs",
                "alias": "DRKE",
                "id": "aed211c3-23a4-4188-ad70-22c6eba7d765",
                "seed": 10
              }
            }
          ]
        }

The following is a visual of that bracket that can be populated from the data above.



Tournament Schedule - Recommended Pull Frequency:

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

3. Track Tournament Statistics

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

Pulling this feed:

Using the tournament_id and team_id from steps 1 and 2, call the Tournament Statistics endpoint.


Example:

{
  "id": "3f50b4cf-b319-4df2-90c0-8fc549742710",
  "name": "NCAA Men's Division I Basketball Tournament",
  "location": "Glendale, AZ, USA",
  "status": "closed",
  "league": {
    "id": "cd4268ee-07aa-4c4d-a435-ec44ad2c76cb",
    "name": "NCAA MEN",
    "alias": "NCAAM"
  },
  "season": {
    "id": "3dcf4c11-e7f8-4996-a34d-49069d14d465",
    "year": 2023,
    "type": "PST"
  },
  "team": {
    "id": "efba5350-79bc-47aa-a189-db177b95b491",
    "name": "Huskies",
    "market": "UConn"
  },
  "own_record": {
    "total": {
      "games_played": 6,
      "minutes": 1200,
      "field_goals_made": 188,
      "field_goals_att": 373,
      "field_goals_pct": 0.504,
      "two_points_made": 147,
      "two_points_att": 237,
      "two_points_pct": 0.62,
      "three_points_made": 41,
      "three_points_att": 136,
      "three_points_pct": 0.301,
      "blocked_att": 20,
      "free_throws_made": 69,
      "free_throws_att": 92,
      "free_throws_pct": 0.75,
      "offensive_rebounds": 69,
      "defensive_rebounds": 159,
      "rebounds": 228,
      "assists": 118,
      "turnovers": 40,
      "assists_turnover_ratio": 2.95,
      "steals": 34,
      "blocks": 34,
      "personal_fouls": 98,
      "tech_fouls": 1,
      "points": 486,
      "fast_break_pts": 49,
      "flagrant_fouls": 0,
      "points_off_turnovers": 73,
      "second_chance_pts": 77,
      "ejections": 0,
      "foulouts": 1,
      "efficiency": 652,
      "points_in_paint": 280,
      "team_offensive_rebounds": 5,
      "team_defensive_rebounds": 12,
      "team_rebounds": 17,
      "team_turnovers": 8,
      "total_rebounds": 245,
      "total_turnovers": 48,
      "true_shooting_att": 413.48,
      "true_shooting_pct": 0.588,
      "field_goals_at_rim_made": 76,
      "field_goals_at_rim_att": 105,
      "field_goals_at_rim_pct": 0.724,
      "field_goals_at_midrange_made": 12,
      "field_goals_at_midrange_att": 29,
      "field_goals_at_midrange_pct": 0.414
    },
    "average": {
      "fast_break_pts": 8.17,
      "points_off_turnovers": 12.17,
      "second_chance_pts": 12.83,
      "minutes": 200,
      "points": 81,
      "off_rebounds": 11.5,
      "def_rebounds": 26.5,
      "rebounds": 38,
      "assists": 19.7,
      "steals": 5.67,
      "blocks": 5.67,
      "turnovers": 6.67,
      "personal_fouls": 16.33,
      "flagrant_fouls": 0,
      "blocked_att": 3.33,
      "field_goals_made": 31.33,
      "field_goals_att": 62.17,
      "three_points_made": 6.83,
      "three_points_att": 22.67,
      "free_throws_made": 11.5,
      "free_throws_att": 15.33,
      "two_points_made": 24.5,
      "two_points_att": 39.5,
      "points_in_paint": 46.67,
      "efficiency": 108.67,
      "true_shooting_att": 68.91
    }
  },
  "opponents": {
    "total": {
      "games_played": 6,
      "minutes": 1200,
      "field_goals_made": 127,
      "field_goals_att": 351,
      "field_goals_pct": 0.362,
      "two_points_made": 97,
      "two_points_att": 241,
      "two_points_pct": 0.402,
      "three_points_made": 30,
      "three_points_att": 110,
      "three_points_pct": 0.273,
      "blocked_att": 34,
      "free_throws_made": 62,
      "free_throws_att": 83,
      "free_throws_pct": 0.747,
      "offensive_rebounds": 47,
      "defensive_rebounds": 116,
      "rebounds": 163,
      "assists": 47,
      "turnovers": 57,
      "assists_turnover_ratio": 0.82,
      "steals": 27,
      "blocks": 20,
      "personal_fouls": 90,
      "tech_fouls": 1,
      "points": 346,
      "fast_break_pts": 27,
      "flagrant_fouls": 0,
      "points_off_turnovers": 48,
      "second_chance_pts": 63,
      "ejections": 0,
      "foulouts": 1,
      "efficiency": 301,
      "points_in_paint": 146,
      "team_offensive_rebounds": 14,
      "team_defensive_rebounds": 5,
      "team_rebounds": 19,
      "team_turnovers": 1,
      "total_rebounds": 182,
      "total_turnovers": 58,
      "true_shooting_att": 387.52,
      "true_shooting_pct": 0.446,
      "field_goals_at_rim_made": 29,
      "field_goals_at_rim_att": 72,
      "field_goals_at_rim_pct": 0.403,
      "field_goals_at_midrange_made": 23,
      "field_goals_at_midrange_att": 54,
      "field_goals_at_midrange_pct": 0.426
    },
    "average": {
      "fast_break_pts": 4.5,
      "points_off_turnovers": 8,
      "second_chance_pts": 10.5,
      "minutes": 200,
      "points": 57.7,
      "off_rebounds": 7.83,
      "def_rebounds": 19.33,
      "rebounds": 27.17,
      "assists": 7.8,
      "steals": 4.5,
      "blocks": 3.33,
      "turnovers": 9.5,
      "personal_fouls": 15,
      "flagrant_fouls": 0,
      "blocked_att": 5.67,
      "field_goals_made": 21.17,
      "field_goals_att": 58.5,
      "three_points_made": 5,
      "three_points_att": 18.33,
      "free_throws_made": 10.33,
      "free_throws_att": 13.83,
      "two_points_made": 16.17,
      "two_points_att": 40.17,
      "points_in_paint": 24.33,
      "efficiency": 50.17,
      "true_shooting_att": 64.59
    }
  },
  "players": [
    {
      "id": "1622ded6-ffd3-4c9b-a774-badd27cd85c0",
      "full_name": "Solomon Ball",
      "first_name": "Solomon",
      "last_name": "Ball",
      "position": "G",
      "primary_position": "NA",
      "jersey_number": "1",
      "total": {
        "games_played": 6,
        "games_started": 0,
        "minutes": 17,
        "field_goals_made": 2,
        "field_goals_att": 11,
        "field_goals_pct": 0.182,
        "two_points_made": 2,
        "two_points_att": 6,
        "two_points_pct": 0.333,
        "three_points_made": 0,
        "three_points_att": 5,
        "three_points_pct": 0,
        "blocked_att": 3,
        "free_throws_made": 1,
        "free_throws_att": 2,
        "free_throws_pct": 0.5,
        "offensive_rebounds": 1,
        "defensive_rebounds": 1,
        "rebounds": 2,
        "assists": 0,
        "turnovers": 1,
        "assists_turnover_ratio": 0,
        "steals": 2,
        "blocks": 0,
        "personal_fouls": 3,
        "tech_fouls": 0,
        "points": 5,
        "flagrant_fouls": 0,
        "ejections": 0,
        "foulouts": 0,
        "true_shooting_att": 11.88,
        "true_shooting_pct": 0.21,
        "efficiency": -2,
        "field_goals_at_rim_made": 1,
        "field_goals_at_rim_att": 4,
        "field_goals_at_rim_pct": 0.25,
        "field_goals_at_midrange_made": 0,
        "field_goals_at_midrange_att": 0,
        "field_goals_at_midrange_pct": 0,
        "usage_pct": 40.1
      },
      "average": {
        "minutes": 2.8,
        "points": 0.8,
        "off_rebounds": 0.17,
        "def_rebounds": 0.17,
        "rebounds": 0.33,
        "assists": 0,
        "steals": 0.33,
        "blocks": 0,
        "turnovers": 0.17,
        "personal_fouls": 0.5,
        "flagrant_fouls": 0,
        "blocked_att": 0.5,
        "field_goals_made": 0.33,
        "field_goals_att": 1.83,
        "three_points_made": 0,
        "three_points_att": 0.83,
        "free_throws_made": 0.17,
        "free_throws_att": 0.33,
        "two_points_made": 0.33,
        "two_points_att": 1,
        "efficiency": -0.33,
        "true_shooting_att": 1.98
      }
    },
    {
      "id": "463da7bb-0f39-4890-9cff-cb1114fcd01a",
      "full_name": "Jayden Ross",
      "first_name": "Jayden",
      "last_name": "Ross",
      "position": "F",
      "primary_position": "NA",
      "jersey_number": "23",
      "total": {
        "games_played": 6,
        "games_started": 0,
        "minutes": 11,
        "field_goals_made": 1,
        "field_goals_att": 3,
        "field_goals_pct": 0.333,
        "two_points_made": 1,
        "two_points_att": 3,
        "two_points_pct": 0.333,
        "three_points_made": 0,
        "three_points_att": 0,
        "three_points_pct": 0,
        "blocked_att": 0,
        "free_throws_made": 0,
        "free_throws_att": 2,
        "free_throws_pct": 0,
        "offensive_rebounds": 1,
        "defensive_rebounds": 4,
        "rebounds": 5,
        "assists": 0,
        "turnovers": 0,
        "assists_turnover_ratio": 0,
        "steals": 1,
        "blocks": 0,
        "personal_fouls": 0,
        "tech_fouls": 0,
        "points": 2,
        "flagrant_fouls": 0,
        "ejections": 0,
        "foulouts": 0,
        "true_shooting_att": 3.88,
        "true_shooting_pct": 0.258,
        "efficiency": 4,
        "field_goals_at_rim_made": 0,
        "field_goals_at_rim_att": 0,
        "field_goals_at_rim_pct": 0,
        "field_goals_at_midrange_made": 1,
        "field_goals_at_midrange_att": 1,
        "field_goals_at_midrange_pct": 1,
        "usage_pct": 18.67
      },
      "average": {
        "minutes": 1.8,
        "points": 0.3,
        "off_rebounds": 0.17,
        "def_rebounds": 0.67,
        "rebounds": 0.83,
        "assists": 0,
        "steals": 0.17,
        "blocks": 0,
        "turnovers": 0,
        "personal_fouls": 0,
        "flagrant_fouls": 0,
        "blocked_att": 0,
        "field_goals_made": 0.17,
        "field_goals_att": 0.5,
        "three_points_made": 0,
        "three_points_att": 0,
        "free_throws_made": 0,
        "free_throws_att": 0.33,
        "two_points_made": 0.17,
        "two_points_att": 0.5,
        "efficiency": 0.67,
        "true_shooting_att": 0.65
      }
    },
    {
      "id": "47c24d47-e523-4ae1-9a35-02851dc2b20d",
      "full_name": "Hassan Diarra",
      "first_name": "Hassan",
      "last_name": "Diarra",
      "position": "G",
      "primary_position": "NA",
      "jersey_number": "10",
      "total": {
        "games_played": 6,
        "games_started": 0,
        "minutes": 118,
        "field_goals_made": 16,
        "field_goals_att": 31,
        "field_goals_pct": 0.516,
        "two_points_made": 12,
        "two_points_att": 17,
        "two_points_pct": 0.706,
        "three_points_made": 4,
        "three_points_att": 14,
        "three_points_pct": 0.286,
        "blocked_att": 1,
        "free_throws_made": 3,
        "free_throws_att": 5,
        "free_throws_pct": 0.6,
        "offensive_rebounds": 4,
        "defensive_rebounds": 16,
        "rebounds": 20,
        "assists": 11,
        "turnovers": 7,
        "assists_turnover_ratio": 1.57,
        "steals": 4,
        "blocks": 0,
        "personal_fouls": 16,
        "tech_fouls": 0,
        "points": 39,
        "flagrant_fouls": 0,
        "ejections": 0,
        "foulouts": 0,
        "true_shooting_att": 33.2,
        "true_shooting_pct": 0.587,
        "efficiency": 50,
        "field_goals_at_rim_made": 7,
        "field_goals_at_rim_att": 10,
        "field_goals_at_rim_pct": 0.7,
        "field_goals_at_midrange_made": 0,
        "field_goals_at_midrange_att": 0,
        "field_goals_at_midrange_pct": 0,
        "usage_pct": 18.03
      },
      "average": {
        "minutes": 19.7,
        "points": 6.5,
        "off_rebounds": 0.67,
        "def_rebounds": 2.67,
        "rebounds": 3.33,
        "assists": 1.8,
        "steals": 0.67,
        "blocks": 0,
        "turnovers": 1.17,
        "personal_fouls": 2.67,
        "flagrant_fouls": 0,
        "blocked_att": 0.17,
        "field_goals_made": 2.67,
        "field_goals_att": 5.17,
        "three_points_made": 0.67,
        "three_points_att": 2.33,
        "free_throws_made": 0.5,
        "free_throws_att": 0.83,
        "two_points_made": 2,
        "two_points_att": 2.83,
        "efficiency": 8.33,
        "true_shooting_att": 5.53
      }
    },
    {
      "id": "572b9414-7f9d-4ad3-8d6e-0775df82c1d0",
      "full_name": "Cam Spencer",
      "first_name": "Cam",
      "last_name": "Spencer",
      "position": "G",
      "primary_position": "NA",
      "jersey_number": "12",
      "total": {
        "games_played": 6,
        "games_started": 6,
        "minutes": 193,
        "field_goals_made": 30,
        "field_goals_att": 65,
        "field_goals_pct": 0.462,
        "two_points_made": 19,
        "two_points_att": 38,
        "two_points_pct": 0.5,
        "three_points_made": 11,
        "three_points_att": 27,
        "three_points_pct": 0.407,
        "blocked_att": 3,
        "free_throws_made": 9,
        "free_throws_att": 10,
        "free_throws_pct": 0.9,
        "offensive_rebounds": 10,
        "defensive_rebounds": 32,
        "rebounds": 42,
        "assists": 21,
        "turnovers": 4,
        "assists_turnover_ratio": 5.25,
        "steals": 12,
        "blocks": 3,
        "personal_fouls": 12,
        "tech_fouls": 0,
        "points": 80,
        "flagrant_fouls": 0,
        "ejections": 0,
        "foulouts": 0,
        "true_shooting_att": 69.4,
        "true_shooting_pct": 0.576,
        "efficiency": 118,
        "field_goals_at_rim_made": 7,
        "field_goals_at_rim_att": 11,
        "field_goals_at_rim_pct": 0.636,
        "field_goals_at_midrange_made": 4,
        "field_goals_at_midrange_att": 11,
        "field_goals_at_midrange_pct": 0.364,
        "usage_pct": 20.13
      },
      "average": {
        "minutes": 32.2,
        "points": 13.3,
        "off_rebounds": 1.67,
        "def_rebounds": 5.33,
        "rebounds": 7,
        "assists": 3.5,
        "steals": 2,
        "blocks": 0.5,
        "turnovers": 0.67,
        "personal_fouls": 2,
        "flagrant_fouls": 0,
        "blocked_att": 0.5,
        "field_goals_made": 5,
        "field_goals_att": 10.83,
        "three_points_made": 1.83,
        "three_points_att": 4.5,
        "free_throws_made": 1.5,
        "free_throws_att": 1.67,
        "two_points_made": 3.17,
        "two_points_att": 6.33,
        "efficiency": 19.67,
        "true_shooting_att": 11.57
      }
    }
  ]
}

This code sample provides detailed statistics for the 2023 NCAA Men's Division I Basketball Tournament, featuring individual and team performance data for the UConn Huskies. It includes metrics like field goals, three-pointers, free throws, rebounds, assists, turnovers, and points scored for both the team and opponents across six tournament games.

The player data section highlights specific statistics for individual players, such as Jace Howard, Jayden Ross, Hassan Diarra, and Cam Spencer. For each player, there are detailed total and average statistics that cover categories like minutes played, field goals made/attempted, shooting percentages, points, rebounds, assists, steals, blocks, and efficiency.

Recommended Pull Frequency - Tournament Statistics:

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


Utilizing the Tournament Summary

The Tournament Summary endpoint returns key details such as the location, status, start date, end date, setup, and participants of the tournament. Similar to the Tournament Schedule endpoint, this data can be used to set up your brackets, but it offers a more concise overview of the tournament. If you're primarily interested in general tournament structure or high-level information, this endpoint provides an efficient way to capture that without needing the full game schedule.

Example:

{
  "id": "3f50b4cf-b319-4df2-90c0-8fc549742710",
  "name": "NCAA Men's Division I Basketball Tournament",
  "location": "Glendale, AZ, USA",
  "status": "closed",
  "start_date": "2024-03-19",
  "end_date": "2024-04-08",
  "league": {
    "id": "cd4268ee-07aa-4c4d-a435-ec44ad2c76cb",
    "name": "NCAA MEN",
    "alias": "NCAAM"
  },
  "season": {
    "id": "3dcf4c11-e7f8-4996-a34d-49069d14d465",
    "year": 2023,
    "type": "PST"
  },
  "brackets": [
    {
      "id": "46b3e80e-ba24-4baf-82e1-e6973c21a0af",
      "name": "South Regional",
      "location": "Dallas, TX, USA",
      "rank": 2,
      "participants": [
        {
          "id": "faeb1160-5d15-4f26-99fc-c441cf21fc7f",
          "name": "Duke Blue Devils",
          "market": "Duke",
          "type": "team",
          "seed": 4
        },
        {
          "id": "52df1e19-b142-4a76-a439-ad68455d0581",
          "name": "North Carolina State Wolfpack",
          "market": "North Carolina State",
          "type": "team",
          "seed": 11
        },
        {
          "id": "aeaaef0d-5238-414e-ac04-c55a22cba208",
          "name": "Oakland Golden Grizzlies",
          "market": "Oakland",
          "type": "team",
          "seed": 14
        },
        {
          "id": "912f8837-1d81-4ef9-a576-a21f271d4c64",
          "name": "Florida Gators",
          "market": "Florida",
          "type": "team",
          "seed": 7
        },
        {
          "id": "2267a1f4-68f6-418b-aaf6-2aa0c4b291f1",
          "name": "Kentucky Wildcats",
          "market": "Kentucky",
          "type": "team",
          "seed": 3
        },
        {
          "id": "ef184799-d79b-49d9-a662-991eaf4044cd",
          "name": "Texas A&M Aggies",
          "market": "Texas A&M",
          "type": "team",
          "seed": 9
        },
        {
          "id": "c1c54dbf-805c-47fc-a707-c803e94db2a4",
          "name": "Boise State Broncos",
          "market": "Boise State",
          "type": "team",
          "seed": 10
        },
        {
          "id": "881380da-861c-4ab6-a7d2-20699d8ea883",
          "name": "Western Kentucky Hilltoppers",
          "market": "Western Kentucky",
          "type": "team",
          "seed": 15
        },
        {
          "id": "c7569eae-5b93-4197-b204-6f3a62146b25",
          "name": "Wisconsin Badgers",
          "market": "Wisconsin",
          "type": "team",
          "seed": 5
        },
        {
          "id": "1f99a164-d593-4d81-85d5-0d7889d6f486",
          "name": "Houston Cougars",
          "market": "Houston",
          "type": "team",
          "seed": 1
        },
        {
          "id": "06f7c904-0ac7-4125-b0f4-f4871bb69057",
          "name": "Marquette Golden Eagles",
          "market": "Marquette",
          "type": "team",
          "seed": 2
        },
        {
          "id": "f8c705b7-87d3-411a-9c8b-5124daab0469",
          "name": "Texas Tech Red Raiders",
          "market": "Texas Tech",
          "type": "team",
          "seed": 6
        },
        {
          "id": "f8b1bf00-5b73-4ac4-98c0-ec554027ae32",
          "name": "Nebraska Cornhuskers",
          "market": "Nebraska",
          "type": "team",
          "seed": 8
        },
        {
          "id": "9fccbf28-2858-4263-821c-fdefb3c7efa3",
          "name": "Colorado Buffaloes",
          "market": "Colorado",
          "type": "team",
          "seed": 10
        },
        {
          "id": "600aad0e-85e7-4db8-be0b-94ba02a08e55",
          "name": "Longwood Lancers",
          "market": "Longwood",
          "type": "team",
          "seed": 16
        },
        {
          "id": "524e3eec-7dde-45c7-b3cc-6308cec73350",
          "name": "James Madison Dukes",
          "market": "James Madison",
          "type": "team",
          "seed": 12
        },
        {
          "id": "18e89867-9201-41ce-ba19-fadddf92fa17",
          "name": "Vermont Catamounts",
          "market": "Vermont",
          "type": "team",
          "seed": 13
        }
      ]
    },
    {
      "id": "5e34b1dc-a095-421b-8d55-b35ba14112cc",
      "name": "West Regional",
      "location": "Los Angeles, CA, USA",
      "rank": 4,
      "participants": [
        {
          "id": "80a19b57-d6ab-4bee-934f-33a72c2e958a",
          "name": "Colgate Raiders",
          "market": "Colgate",
          "type": "team",
          "seed": 14
        },
        {
          "id": "1b1977ec-b32f-4ce3-95a4-d07bab4816cd",
          "name": "New Mexico Lobos",
          "market": "New Mexico",
          "type": "team",
          "seed": 11
        },
        {
          "id": "8548dacb-3636-48a8-8c46-611ab0c15fc0",
          "name": "Charleston Cougars",
          "market": "Charleston",
          "type": "team",
          "seed": 13
        },
        {
          "id": "a1ba4b89-d97c-44e2-835f-79ad3ccaa5ae",
          "name": "Mississippi State Bulldogs",
          "market": "Mississippi State",
          "type": "team",
          "seed": 8
        },
        {
          "id": "62a73b4a-e281-4483-a1f8-f1160a18e456",
          "name": "Nevada Wolf Pack",
          "market": "Nevada",
          "type": "team",
          "seed": 10
        },
        {
          "id": "632616c5-2dbb-4017-a449-c9dfc303f026",
          "name": "Dayton Flyers",
          "market": "Dayton",
          "type": "team",
          "seed": 7
        },
        {
          "id": "9b166a3f-e64b-4825-bb6b-92c6f0418263",
          "name": "Arizona Wildcats",
          "market": "Arizona",
          "type": "team",
          "seed": 2
        },
        {
          "id": "22fbe5dc-c6db-4675-b3a3-2d8af7f5d313",
          "name": "Howard Bison",
          "market": "Howard",
          "type": "team",
          "seed": 16
        },
        {
          "id": "c2104cdc-c83d-40d2-a3cd-df986e29f5d3",
          "name": "Alabama Crimson Tide",
          "market": "Alabama",
          "type": "team",
          "seed": 4
        },
        {
          "id": "dcf5c2e7-c227-4c20-af26-715d5f859412",
          "name": "Clemson Tigers",
          "market": "Clemson",
          "type": "team",
          "seed": 6
        },
        {
          "id": "11a617d5-af03-4cce-bc8a-51114d9e41fe",
          "name": "Long Beach State Beach",
          "market": "Long Beach State",
          "type": "team",
          "seed": 15
        },
        {
          "id": "db6e1cab-3fa3-4a93-a673-8b2a358ff4bf",
          "name": "Baylor Bears",
          "market": "Baylor",
          "type": "team",
          "seed": 3
        },
        {
          "id": "e9ca48b2-00ba-41c0-a02b-6885a2da1ff1",
          "name": "North Carolina Tar Heels",
          "market": "North Carolina",
          "type": "team",
          "seed": 1
        },
        {
          "id": "3b644902-cd06-4930-9a3e-6c78cfb1f464",
          "name": "Wagner Seahawks",
          "market": "Wagner",
          "type": "team",
          "seed": 16
        },
        {
          "id": "b18f34af-a7f1-4659-a2e5-fc11a31cd316",
          "name": "Saint Mary's Gaels",
          "market": "Saint Mary's",
          "type": "team",
          "seed": 5
        },
        {
          "id": "f7e6acc3-0778-4de5-940a-d88e20df1159",
          "name": "Grand Canyon Antelopes",
          "market": "Grand Canyon",
          "type": "team",
          "seed": 12
        },
        {
          "id": "a41d5a05-4c11-4171-a57e-e7a1ea325a6d",
          "name": "Michigan State Spartans",
          "market": "Michigan State",
          "type": "team",
          "seed": 9
        }
      ]
    },
    {
      "id": "9d2a7eb7-844a-4942-9e8c-cbb9c065f4a7",
      "name": "East Regional",
      "location": "Boston, MA, USA",
      "rank": 1,
      "participants": [
        {
          "id": "aed211c3-23a4-4188-ad70-22c6eba7d765",
          "name": "Drake Bulldogs",
          "market": "Drake",
          "type": "team",
          "seed": 10
        },
        {
          "id": "394d1b2b-7a19-4d43-b04a-5f366c24e5bf",
          "name": "Stetson Hatters",
          "market": "Stetson",
          "type": "team",
          "seed": 16
        },
        {
          "id": "150148c2-ca8f-414f-8f41-d94a55d4a122",
          "name": "Illinois Fighting Illini",
          "market": "Illinois",
          "type": "team",
          "seed": 3
        },
        {
          "id": "0e4258fa-3154-4c16-b693-adecab184c6c",
          "name": "Iowa State Cyclones",
          "market": "Iowa State",
          "type": "team",
          "seed": 2
        },
        {
          "id": "efba5350-79bc-47aa-a189-db177b95b491",
          "name": "UConn Huskies",
          "market": "UConn",
          "type": "team",
          "seed": 1
        },
        {
          "id": "b7747a03-c85b-4de6-94bf-1b5b68553248",
          "name": "Morehead State Eagles",
          "market": "Morehead State",
          "type": "team",
          "seed": 14
        },
        {
          "id": "2d4f0015-adb4-4877-8c15-4a6eed7eed03",
          "name": "Washington State Cougars",
          "market": "Washington State",
          "type": "team",
          "seed": 7
        },
        {
          "id": "c31455b2-8a45-4248-aa8f-ce7eab1c6b02",
          "name": "BYU Cougars",
          "market": "BYU",
          "type": "team",
          "seed": 6
        },
        {
          "id": "0c0608b3-f349-4f5e-9a10-7e6a744dd0d2",
          "name": "Auburn Tigers",
          "market": "Auburn",
          "type": "team",
          "seed": 4
        },
        {
          "id": "fea46ac5-6dad-43cd-a770-75554dbcc118",
          "name": "Duquesne Dukes",
          "market": "Duquesne",
          "type": "team",
          "seed": 11
        },
        {
          "id": "6ef40534-5fad-4755-84de-7dcbd645d1f0",
          "name": "South Dakota State Jackrabbits",
          "market": "South Dakota State",
          "type": "team",
          "seed": 15
        },
        {
          "id": "4b7dedc0-7b48-49a4-aad6-8a94a33274d2",
          "name": "Northwestern Wildcats",
          "market": "Northwestern",
          "type": "team",
          "seed": 9
        },
        {
          "id": "63a8fdcf-b51b-4de3-8a57-2a6e41d362ce",
          "name": "UAB Blazers",
          "market": "UAB",
          "type": "team",
          "seed": 12
        },
        {
          "id": "c851131a-5ecd-4670-81bc-b40f4837dd65",
          "name": "Florida Atlantic Owls",
          "market": "Florida Atlantic",
          "type": "team",
          "seed": 8
        },
        {
          "id": "ca478771-aa3d-4231-81e0-b70f519134fb",
          "name": "Yale Bulldogs",
          "market": "Yale",
          "type": "team",
          "seed": 13
        },
        {
          "id": "e6914f16-ca37-4d2e-ba26-a425910283e2",
          "name": "San Diego State Aztecs",
          "market": "San Diego State",
          "type": "team",
          "seed": 5
        }
      ]
    },
    {
      "id": "c81cc6d3-8236-4a3f-b855-65b85e7b8601",
      "name": "Midwest Regional",
      "location": "Detroit, MI, USA",
      "rank": 3,
      "participants": [
        {
          "id": "12d7f888-675b-459f-9099-a38f771d8a95",
          "name": "Purdue Boilermakers",
          "market": "Purdue",
          "type": "team",
          "seed": 1
        },
        {
          "id": "f7fcbb6e-4a55-41ea-ba21-f763ed914467",
          "name": "TCU Horned Frogs",
          "market": "TCU",
          "type": "team",
          "seed": 9
        },
        {
          "id": "56913910-87f7-4ad7-ae3b-5cd9fb218fd9",
          "name": "Virginia Cavaliers",
          "market": "Virginia",
          "type": "team",
          "seed": 10
        },
        {
          "id": "e66d7ed2-9b4c-48c8-adaa-a276793b057d",
          "name": "Saint Peter's Peacocks",
          "market": "Saint Peter's",
          "type": "team",
          "seed": 15
        },
        {
          "id": "fae4855b-1b64-4b40-a632-9ed345e1e952",
          "name": "Kansas Jayhawks",
          "market": "Kansas",
          "type": "team",
          "seed": 4
        },
        {
          "id": "7d797407-623e-476d-b299-46de4275414d",
          "name": "Creighton Bluejays",
          "market": "Creighton",
          "type": "team",
          "seed": 3
        },
        {
          "id": "6776c7e6-f4c2-47bd-99e5-39fc179a3197",
          "name": "Grambling State Tigers",
          "market": "Grambling State",
          "type": "team",
          "seed": 16
        },
        {
          "id": "bec40585-b587-4548-93f5-b7c00b046aea",
          "name": "Montana State Bobcats",
          "market": "Montana State",
          "type": "team",
          "seed": 16
        },
        {
          "id": "56fe0ab2-e4f0-47b9-8726-9ce23ebcde20",
          "name": "Akron Zips",
          "market": "Akron",
          "type": "team",
          "seed": 14
        },
        {
          "id": "2f4d21f8-6d5f-48a5-abca-52a30583871a",
          "name": "Gonzaga Bulldogs",
          "market": "Gonzaga",
          "type": "team",
          "seed": 5
        },
        {
          "id": "6ed15092-2670-450a-99c2-61d861e87644",
          "name": "Texas Longhorns",
          "market": "Texas",
          "type": "team",
          "seed": 7
        },
        {
          "id": "1c7ec608-3b36-4cee-adac-9265e3792597",
          "name": "South Carolina Gamecocks",
          "market": "South Carolina",
          "type": "team",
          "seed": 6
        },
        {
          "id": "c13f96ba-c79c-452f-9f63-3b45fae4e543",
          "name": "Samford Bulldogs",
          "market": "Samford",
          "type": "team",
          "seed": 13
        },
        {
          "id": "d2ef641c-70e4-48bb-b40d-ac654d179205",
          "name": "McNeese Cowboys",
          "market": "McNeese",
          "type": "team",
          "seed": 12
        },
        {
          "id": "7672ff16-8436-47e6-8546-0fb5494ec7ee",
          "name": "Utah State Aggies",
          "market": "Utah State",
          "type": "team",
          "seed": 8
        },
        {
          "id": "b827dbdf-230f-4916-9703-3bb9004e26eb",
          "name": "Tennessee Volunteers",
          "market": "Tennessee",
          "type": "team",
          "seed": 2
        },
        {
          "id": "1da70895-f77f-44ef-b216-d63c02e696eb",
          "name": "Oregon Ducks",
          "market": "Oregon",
          "type": "team",
          "seed": 11
        },
        {
          "id": "1a470730-f328-4fb1-8bbf-36a069e4d6b2",
          "name": "Colorado State Rams",
          "market": "Colorado State",
          "type": "team",
          "seed": 10
        }
      ]
    }
  ]
}

This sample provides high level information for the 2023 March Madness tournament. It includes tournament location, status, and dates, highlighting that the 2024 event took place in Glendale, AZ, from March 19 to April 8. The tournament is divided into four regional brackets: South, West, East, and Midwest, each featuring teams ranked by seed, such as the Duke Blue Devils (seed 4) and the Houston Cougars (seed 1).

Use Case:

This data can be utilized in a tournament management application that provides users with a high-level overview of the tournament. The application could display detailed brackets, team matchups, and regional breakdowns, helping users follow the progress of teams through the tournament. Additionally, it could serve as the foundation for creating custom tournament visualizations, enhancing fan engagement by allowing them to track team performances and predict outcomes based on seed rankings and other stats.


Conference Tournaments

Conference tournaments in NCAAM serve as a crucial postseason event where teams from the same conference compete for a championship title and, in many cases, an automatic bid to the NCAA Tournament.


Building a Conference Tournament Bracket

Our schedule and tournament feeds can provide data specific to conference tournaments by inputting CT in the season_type parameter. To build your conference tournament, the steps are similar to building the March Madness tournament:

  1. Call the Tournament List endpoint to access a list of tournaments for the NCAA Men's Basketball conference tournament season CT.
  2. Using the tournament id, pull the Tournament Schedule endpoint to get game details for the CT matchup.
  3. Along with tracking live games in each matchup, you can use the Tournament Statistics feed to pull team and player statistics from the tournament.