ID Handling
Intro to IDs
Our NCAA Women's Basketball (NCAAWB) API features a number of unique identifiers. Some IDs are needed to request feeds, while others signify unique data.
IDs can be attributed to leagues, conferences, divisions, teams, venues, quarters, coaches, plays, in-game events, and many other variables.
ID Types
UUIDs (Universally Unique Identifiers) serve as the primary ID types used to represent a wide range of variables. These IDs uniquely identify a specific variable within the API and are consistent across multiple Sportradar APIs or even external data sources.
UUIDs follow a specific structure: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
You'll see these UUIDs for teams, players, games, seasons, and more.
<team id="7f4f0451-6b78-4082-9503-ce851e549b0c" name="Gamecocks" alias="SCAR" market="South Carolina"/>
IDs in other SR Products
WNBA
Some NCAA Women's Basketball players go on to play in the WNBA, and thus have profiles and IDs within the WNBA API. However, their unique college basketball IDs do not transfer to the WNBA API.
WNBA Draft Feed Availability
WNBA Draft feeds are not currently available. You can, however, track the NBA Draft using our existing NBA Draft feeds.
Global Basketball
The Global Basketball API covers NCAAWB data at a much lower tier, and is based on the sr_id
system, with IDs that look like: sr:competitor:3420
or sr:sport_event:53286421
.
Make use of the Mapping Feeds within Global Basketball should you need to link between APIs. These feeds provide id
and sr_id
links for teams, players, games, and seasons.
<mapping external_id="8ddbfca9-a931-4908-aa31-9fcd17624b5f" id="sr:competitor:87824"/>
<mapping external_id="73399a24-e05f-4d0f-bc99-f633324a31eb" id="sr:competitor:302228"/>
<mapping external_id="cb52cdfb-23b9-4fed-bbe8-f8df05821973" id="sr:competitor:297678"/>
<mapping external_id="de1e599a-32df-4e8c-916f-9ac20912009c" id="sr:competitor:297656"/>
<mapping external_id="8709616c-fb1c-4210-bd0c-ec4bd68fd69f" id="sr:competitor:305430"/>
<mapping external_id="7a30c43d-a206-476d-b5b2-75b419445ae9" id="sr:player:1176252"/>
<mapping external_id="20690402-3651-4ad5-8637-2cb1081bbb06" id="sr:player:2859809"/>
<mapping external_id="4d98d238-6a96-4770-ac25-3cec68b4f90c" id="sr:player:2859775"/>
<mapping external_id="01990f34-37fa-40c5-83ae-bd4da18a6901" id="sr:player:2859773"/>
<mapping external_id="2ee308da-2d15-42af-9e0d-7a4b211d07dd" id="sr:player:2859771"/>
<mapping external_id="e6d5aefa-59ef-49af-8fc2-bc27dc07ca99" id="sr:sport_event:53286421"/>
<mapping external_id="fdfc9371-22d3-4c8e-b95c-50b847a29505" id="sr:sport_event:53286415"/>
<mapping external_id="c12abfc2-ea49-49ad-a8bf-a26abed68c27" id="sr:sport_event:53336599"/>
<mapping external_id="35d392a6-d9b6-4225-97dd-c6e72b47c0d9" id="sr:sport_event:52864745"/>
<mapping external_id="8cbdc7e2-f9cb-4b89-92a4-05bcd57169d6" id="sr:sport_event:52866623"/>
<mapping external_id="a871223e-1e70-419e-8697-c0c1c010a7a9" id="sr:season:105257"/>
<mapping external_id="3dcf4c11-e7f8-4996-a34d-49069d14d465" id="sr:season:104315"/>
<mapping external_id="6d242a1f-93d0-48e4-96c0-45ff92ba607e" id="sr:season:105255"/>
<mapping external_id="7aa53f56-bde6-441f-966b-161ecd993de5" id="sr:season:104319"/>
<mapping external_id="db004e22-7ed4-4316-8302-79454224f49d" id="sr:season:112470"/>
Access
Please note that you will need access to the Global Basketball API in your account to make use of these endpoints.
Game IDs
Each NCAAWB game will have its own unique identifier under game.id
. See below for a sample taken from the Schedule endpoint.
<game id="9d854ac4-f93e-429e-8163-b7dacfe59c43" status="closed" coverage="extended_boxscore" scheduled="2024-11-04T15:30:00Z" home_points="85" away_points="39" conference_game="false" home_team="10d8e1cc-4ce5-46d4-9caf-154b203768ed" away_team="876ceafd-2be8-4bd8-bc7e-57d063698f2a">
<time_zones venue="US/Eastern" home="US/Eastern" away="US/Eastern"/>
<venue id="c5e846e9-2860-4c55-8352-c3a4587afe27" name="Hank McCamish Pavilion" capacity="8600" address="965 Fowler Street" city="Atlanta" state="GA" zip="30332" country="USA">
<location lat="33.780833" lng="-84.392778"/>
</venue>
<home name="Georgia Tech Yellow Jackets" alias="GT" id="10d8e1cc-4ce5-46d4-9caf-154b203768ed"></home>
<away name="Winthrop Eagles" alias="WIN" id="876ceafd-2be8-4bd8-bc7e-57d063698f2a"></away>
</game>
{
"games": [
{
"id": "9d854ac4-f93e-429e-8163-b7dacfe59c43",
"status": "closed",
"coverage": "extended_boxscore",
"scheduled": "2024-11-04T15:30:00Z",
"home_points": 85,
"away_points": 39,
"conference_game": false,
"time_zones": {
"venue": "US/Eastern",
"home": "US/Eastern",
"away": "US/Eastern"
},
"venue": {
"id": "c5e846e9-2860-4c55-8352-c3a4587afe27",
"name": "Hank McCamish Pavilion",
"capacity": 8600,
"address": "965 Fowler Street",
"city": "Atlanta",
"state": "GA",
"zip": "30332",
"country": "USA",
"location": {
"lat": "33.780833",
"lng": "-84.392778"
}
},
"home": {
"name": "Georgia Tech Yellow Jackets",
"alias": "GT",
"id": "10d8e1cc-4ce5-46d4-9caf-154b203768ed"
},
"away": {
"name": "Winthrop Eagles",
"alias": "WIN",
"id": "876ceafd-2be8-4bd8-bc7e-57d063698f2a"
}
}
]
}
Once created, game IDs are unchanging, except in the rare case that a game is postponed, or a game is mistakenly created twice (the duplicated UUID would be removed).
Team IDs
Each NCAAWB team will have its own unique identifier under team.id
. You can locate all active teams in the League Hierarchy feed, and all active teams in our NCAAWB database in the Teams feed.
<team id="aa299124-79a5-4789-9eac-b385de453903" name="49ers" alias="CHAR" market="Charlotte"/>
<team id="3b6e17f4-27db-44de-a607-142b16e25964" name="AMCats" alias="AMC" market="Anna Maria"/>
<team id="fcacead4-da7a-4202-9b2a-46e76ffd321e" name="Aggies" alias="CAMU" market="Cameron"/>
{
"id": "dd2d1244-0176-4529-93a3-fab0679f7589",
"name": "Big 12 Women",
"alias": "BIG12-W",
"teams": [
{
"id": "0c7f91a5-6a81-45f4-8419-cea97ba509e0",
"name": "Bearcats",
"market": "Cincinnati",
"alias": "CIN",
"founded": 1819,
"mascot": "Bearcat",
"fight_song": "Cheer Cincinnati",
"championships_won": 0,
"conference_titles": 1,
"playoff_appearances": 4,
"team_colors": [
{
"type": "primary",
"hex_color": "#e00122",
"rgb_color": {
"red": 224,
"green": 1,
"blue": 34
}
},
{
"type": "secondary",
"hex_color": "#000000",
"rgb_color": {
"red": 0,
"green": 0,
"blue": 0
}
}
],
"venue": {
"id": "a8644cd5-3962-481b-8df9-e529e6361d6a",
"name": "Fifth Third Arena",
"capacity": 13176,
"address": "2700 O'Varsity Way",
"city": "Cincinnati",
"state": "OH",
"zip": "45221",
"country": "USA",
"location": {
"lat": "39.1306654",
"lng": "-84.5115497"
}
}
},
{
"id": "50e26031-4780-4c45-baea-9c264ae4e0e1",
"name": "Buffaloes",
"market": "Colorado",
"alias": "COLO",
"founded": 1876,
"mascot": "Ralphie, Chip",
"fight_song": "Fight CU",
"championships_won": 0,
"conference_titles": 5,
"playoff_appearances": 16,
"team_colors": [
{
"type": "secondary",
"hex_color": "#cfb87c",
"rgb_color": {
"red": 207,
"green": 184,
"blue": 124
}
},
{
"type": "primary",
"hex_color": "#000000",
"rgb_color": {
"red": 0,
"green": 0,
"blue": 0
}
}
],
"venue": {
"id": "9adf9df2-fc71-4c24-8ddf-ad77f4a935f8",
"name": "CU Events Center",
"capacity": 11064,
"address": "Kittredge Loop Road",
"city": "Boulder",
"state": "CO",
"zip": "80302",
"country": "USA",
"location": {
"lat": "40.004639",
"lng": "-105.260583"
}
}
},
{
"id": "5f51a5c8-3004-43f2-a007-431de4f4bdb2",
"name": "Horned Frogs",
"market": "TCU",
"alias": "TCU",
"founded": 1873,
"mascot": "Super Frog",
"fight_song": "TCU Fight",
"championships_won": 0,
"conference_titles": 4,
"playoff_appearances": 10,
"team_colors": [
{
"type": "primary",
"hex_color": "#4d1979",
"rgb_color": {
"red": 77,
"green": 25,
"blue": 121
}
},
{
"type": "secondary",
"hex_color": "#ffffff",
"rgb_color": {
"red": 255,
"green": 255,
"blue": 255
}
}
],
"venue": {
"id": "1819e403-3649-4114-af21-f21d70cceb61",
"name": "Ed and Rae Schollmaier Arena",
"capacity": 6800,
"address": "3000 Stadium Drive",
"city": "Fort Worth",
"state": "TX",
"zip": "76129",
"country": "USA",
"location": {
"lat": "32.708794",
"lng": "-97.366769"
}
}
},
{
"id": "8226e857-61e5-4e9a-a532-9195386f53c4",
"name": "Jayhawks",
"market": "Kansas",
"alias": "KU",
"founded": 1865,
"mascot": "Big Jay and Baby Jay",
"fight_song": "I'm a Jayhawk",
"championships_won": 0,
"conference_titles": 3,
"playoff_appearances": 15,
"team_colors": [
{
"type": "primary",
"hex_color": "#0051ba",
"rgb_color": {
"red": 0,
"green": 81,
"blue": 186
}
},
{
"type": "secondary",
"hex_color": "#e8000d",
"rgb_color": {
"red": 232,
"green": 0,
"blue": 13
}
}
],
"venue": {
"id": "198a412e-f8cd-4a32-bf09-c45831f6c1d2",
"name": "Allen Fieldhouse",
"capacity": 16300,
"address": "1651 Naismith Drive",
"city": "Lawrence",
"state": "KS",
"zip": "66045",
"country": "USA",
"location": {
"lat": "38.954306",
"lng": "-95.252394"
}
}
},
{
"id": "8424b017-4081-4c05-900a-d7df42b77681",
"name": "Wildcats",
"market": "Arizona",
"alias": "ARIZ",
"founded": 1885,
"mascot": "Wilbur and Wilma T. Wildcat",
"fight_song": "Fight! Wildcats! Fight!, Bear Down",
"championships_won": 0,
"conference_titles": 0,
"playoff_appearances": 11,
"team_colors": [
{
"type": "secondary",
"hex_color": "#0c234b",
"rgb_color": {
"red": 12,
"green": 35,
"blue": 75
}
},
{
"type": "primary",
"hex_color": "#ab0520",
"rgb_color": {
"red": 171,
"green": 5,
"blue": 32
}
}
],
"venue": {
"id": "60c78748-ee0e-4764-9c8c-141e876d2abf",
"name": "McKale Center",
"capacity": 14644,
"address": "1 National Championship Drive",
"city": "Tucson",
"state": "AZ",
"zip": "85721",
"country": "USA",
"location": {
"lat": "32.230252",
"lng": "-110.945927"
}
}
}
]
}
TBD Teams
Within the Teams feed, you will find a TBD team. This unique ID can be used to populate game information when game matchups are not yet known. You can find more info on this process in the March Madness integration scenario.
<team id="24f0e2b9-1f65-43f0-81e6-18dd3b8f88ae" name="TBD" market="Team" alias="TBD"/>
Player IDs
Each NCAAWB player will have their own unique identifier under player.id
. You can locate all active players on a given team in the Team Profile endpoint, and retrieve detailed player biographical info and stats in the Player Profile endpoint.
Player IDs will not change once created.
<team
xmlns="http://feed.elasticstats.com/schema/basketball/team-v8.0.xsd" id="f383d855-f0e2-4114-a8f0-bc75647e1bd6" name="Seahawks" market="Wagner" alias="WAG" founded="1883" mascot="The Seahawk" fight_song="Beautiful Upon a Hill" championships_won="0" conference_titles="1" playoff_appearances="0">
<venue id="254f6182-6d7d-401c-8b29-a95817c6bd9c" name="Spiro Sports Center" capacity="2100" address="1 Campus Road" city="Staten Island" state="NY" zip="10301" country="USA">
<location lat="40.615" lng="-74.095833"/>
</venue>
<hierarchy>
<league id="affab7b6-647e-4304-bbe2-1f9d68cd0cea" name="NCAA WOMEN" alias="NCAAW"/>
<division id="4ce010e9-a8ef-4a6e-8fee-e0bb9f58dbb9" name="NCAA Division I Women" alias="D1-W"/>
<conference id="96f9f14f-3a75-455a-9c1c-7b193bc22476" name="Northeast Women" alias="NE-W"/>
</hierarchy>
<coaches>
<coach id="f8188f8c-2ea7-490d-9add-91f171c977b8" full_name="Terrell Coburn" first_name="Terrell" last_name="Coburn" position="Head Coach"/>
</coaches>
<team_colors>
<team_color type="secondary" hex_color="#ffffff">
<rgb_color red="255" green="255" blue="255"/>
</team_color>
<team_color type="primary" hex_color="#004331">
<rgb_color red="0" green="67" blue="49"/>
</team_color>
</team_colors>
<players>
<player id="22944929-734b-45ce-8302-6232202c8da9" status="ACT" full_name="Lijirin Doyinsola Modesayor" first_name="Lijirin" last_name="Doyinsola Modesayor" abbr_name="L.Doyinsola Modesayor" height="75" position="C" primary_position="NA" jersey_number="30" experience="SO" birth_place="Ondo State,, NGA" updated="2024-10-19T01:27:12Z"></player>
<player id="26fc09ad-7ee1-4ff3-8999-4680dd5ffb46" status="ACT" full_name="Hawa Balde-Camara" first_name="Hawa" last_name="Balde-Camara" abbr_name="H.Balde-Camara" height="76" position="C" primary_position="NA" jersey_number="21" experience="JR" birth_place="Pineda de Mar,, ESP" updated="2024-10-19T01:30:58Z"></player>
<player id="296bcc58-62d9-47e1-969e-71e7c29c87bd" status="ACT" full_name="Raneem ElBarky" first_name="Raneem" last_name="ElBarky" abbr_name="R.ElBarky" height="73" position="F" primary_position="NA" jersey_number="22" experience="GR" birth_place="Cairo,, EGY" updated="2024-11-18T15:38:06Z"></player>
<player id="40e64f18-3c43-4824-8412-b6fb38783c5d" status="ACT" full_name="Taleah Washington" first_name="Taleah" last_name="Washington" abbr_name="T.Washington" height="67" position="G" primary_position="NA" jersey_number="1" experience="GR" birth_place="District Heights, MD, USA" updated="2024-10-19T01:31:17Z"></player>
<player id="575c5bf4-87b1-40a7-8a20-eb6219b50833" status="ACT" full_name="Maria Doreste" first_name="Maria" last_name="Doreste" abbr_name="M.Doreste" height="69" position="G" primary_position="NA" jersey_number="5" experience="JR" birth_place="Las Palmas de Gran Canaria,, ESP" updated="2024-10-19T01:28:14Z"></player>
<player id="5d7c4c72-04ca-4632-8cb1-0c4c3ccf1f83" status="ACT" full_name="Klea Kaci" first_name="Klea" last_name="Kaci" abbr_name="K.Kaci" height="71" position="G" primary_position="NA" jersey_number="0" experience="SO" birth_place="Mississauga, ON, CAN" updated="2024-10-19T01:27:39Z"></player>
<player id="60496f2a-9c50-4ca3-9ae6-75cc79f7eac1" status="ACT" full_name="KC Carter" first_name="KC" last_name="Carter" abbr_name="K.Carter" height="68" position="G" primary_position="NA" jersey_number="3" experience="GR" birth_place="Brooklyn, NY, USA" updated="2024-10-19T01:31:50Z"></player>
<player id="67ad9839-5502-438d-9497-5b1071842656" status="ACT" full_name="Angelie Ricard" first_name="Angelie" last_name="Ricard" abbr_name="A.Ricard" height="70" position="G" primary_position="NA" jersey_number="14" experience="JR" birth_place="Orford, QC, CAN" updated="2024-10-19T01:30:35Z"></player>
<player id="6968850e-33d2-4cea-a7ef-95159da72971" status="ACT" full_name="Elle Johansson" first_name="Elle" last_name="Johansson" abbr_name="E.Johansson" height="65" position="G" primary_position="NA" jersey_number="4" experience="FR" birth_place="Lulea,, SWE" updated="2024-10-19T01:25:55Z"></player>
<player id="7336457b-b417-492e-a3e5-8dca5f6105e5" status="ACT" full_name="Irene Fernandez de Caleya" first_name="Irene" last_name="Fernandez de Caleya" abbr_name="I.Fernandez de Caleya" height="70" position="G" primary_position="NA" jersey_number="12" experience="JR" birth_place="Tarragona,, ESP" updated="2024-10-19T01:30:21Z"></player>
<player id="762b5131-391d-4943-bec1-7c4c4e3933cf" status="ACT" full_name="Julia Fabozzi" first_name="Julia" last_name="Fabozzi" abbr_name="J.Fabozzi" height="73" position="G" primary_position="NA" jersey_number="23" experience="GR" birth_place="Staten Island, NY, USA" updated="2024-10-19T01:32:38Z"></player>
<player id="9c864a76-0d6b-4f69-9d55-e468eb60c38e" status="ACT" full_name="Shamique Cummings" first_name="Shamique" last_name="Cummings" abbr_name="S.Cummings" height="72" position="F" primary_position="NA" jersey_number="10" experience="SO" birth_place="Montreal, QC, CAN" updated="2024-11-18T15:36:55Z"></player>
<player id="ae8c04ec-7d41-4e65-a107-4be26fba76f3" status="ACT" full_name="Keana Foz" first_name="Keana" last_name="Foz" abbr_name="K.Foz" height="68" position="G" primary_position="NA" jersey_number="13" experience="FR" birth_place="Mississauga, ON, CAN" updated="2024-10-19T01:26:42Z"></player>
<player id="e8e9cb80-70ec-4665-ba2c-dee593f97e00" status="ACT" full_name="Malia Mpondo" first_name="Malia" last_name="Mpondo" abbr_name="M.Mpondo" height="74" position="F" primary_position="NA" jersey_number="11" experience="JR" birth_place="Founex,, CHE" updated="2024-10-19T01:28:29Z"></player>
</players>
</team>
{
"id": "d8f2f455-ee4e-4061-8d1d-bd04131bd9a4",
"status": "NWT",
"full_name": "Caitlin Clark",
"first_name": "Caitlin",
"last_name": "Clark",
"abbr_name": "C.Clark",
"height": 72,
"position": "G",
"primary_position": "NA",
"experience": "SR",
"birth_place": "West Des Moines, IA, USA",
"updated": "2024-04-22T20:31:43Z",
"league": {
"id": "affab7b6-647e-4304-bbe2-1f9d68cd0cea",
"name": "NCAA WOMEN",
"alias": "NCAAW"
},
"seasons": [
{
"id": "cf5dcb91-e9ec-4993-ba42-5d632306b4c8",
"year": 2023,
"type": "REG",
"teams": [
{
"id": "7269c5c7-6614-41d8-9415-7ca3243f6612",
"name": "Hawkeyes",
"market": "Iowa",
"alias": "IOWA",
"total": {
"games_played": 39,
"games_started": 39,
"minutes": 1359,
"field_goals_made": 403,
"field_goals_att": 886,
"field_goals_pct": 0.455,
"two_points_made": 202,
"two_points_att": 354,
"two_points_pct": 0.571,
"three_points_made": 201,
"three_points_att": 532,
"three_points_pct": 0.378,
"blocked_att": 19,
"free_throws_made": 227,
"free_throws_att": 264,
"free_throws_pct": 0.86,
"offensive_rebounds": 17,
"defensive_rebounds": 270,
"rebounds": 287,
"assists": 346,
"turnovers": 185,
"assists_turnover_ratio": 1.87,
"steals": 68,
"blocks": 20,
"personal_fouls": 78,
"tech_fouls": 2,
"points": 1234,
"flagrant_fouls": 0,
"ejections": 0,
"foulouts": 0,
"true_shooting_att": 1002.16,
"true_shooting_pct": 0.616,
"efficiency": 1250,
"field_goals_at_rim_made": 81,
"field_goals_at_rim_att": 128,
"field_goals_at_rim_pct": 0.633,
"field_goals_at_midrange_made": 21,
"field_goals_at_midrange_att": 70,
"field_goals_at_midrange_pct": 0.3,
"usage_pct": 40.27
},
"average": {
"minutes": 34.8,
"points": 31.6,
"off_rebounds": 0.44,
"def_rebounds": 6.92,
"rebounds": 7.36,
"assists": 8.9,
"steals": 1.74,
"blocks": 0.51,
"turnovers": 4.74,
"personal_fouls": 2,
"flagrant_fouls": 0,
"blocked_att": 0.49,
"field_goals_made": 10.33,
"field_goals_att": 22.72,
"three_points_made": 5.15,
"three_points_att": 13.64,
"free_throws_made": 5.82,
"free_throws_att": 6.77,
"two_points_made": 5.18,
"two_points_att": 9.08,
"efficiency": 32.05,
"true_shooting_att": 25.7
}
}
]
},
{
"id": "a871223e-1e70-419e-8697-c0c1c010a7a9",
"year": 2023,
"type": "PST",
"teams": [
{
"id": "7269c5c7-6614-41d8-9415-7ca3243f6612",
"name": "Hawkeyes",
"market": "Iowa",
"alias": "IOWA",
"total": {
"games_played": 6,
"games_started": 6,
"minutes": 227,
"field_goals_made": 59,
"field_goals_att": 138,
"field_goals_pct": 0.428,
"two_points_made": 31,
"two_points_att": 60,
"two_points_pct": 0.517,
"three_points_made": 28,
"three_points_att": 78,
"three_points_pct": 0.359,
"blocked_att": 4,
"free_throws_made": 34,
"free_throws_att": 39,
"free_throws_pct": 0.872,
"offensive_rebounds": 5,
"defensive_rebounds": 41,
"rebounds": 46,
"assists": 52,
"turnovers": 27,
"assists_turnover_ratio": 1.93,
"steals": 10,
"blocks": 3,
"personal_fouls": 14,
"tech_fouls": 0,
"points": 180,
"flagrant_fouls": 0,
"ejections": 0,
"foulouts": 0,
"true_shooting_att": 155.16,
"true_shooting_pct": 0.58,
"efficiency": 180,
"field_goals_at_rim_made": 18,
"field_goals_at_rim_att": 33,
"field_goals_at_rim_pct": 0.545,
"field_goals_at_midrange_made": 1,
"field_goals_at_midrange_att": 11,
"field_goals_at_midrange_pct": 0.091,
"usage_pct": 38.03
},
"average": {
"minutes": 37.8,
"points": 30,
"off_rebounds": 0.83,
"def_rebounds": 6.83,
"rebounds": 7.67,
"assists": 8.7,
"steals": 1.67,
"blocks": 0.5,
"turnovers": 4.5,
"personal_fouls": 2.33,
"flagrant_fouls": 0,
"blocked_att": 0.67,
"field_goals_made": 9.83,
"field_goals_att": 23,
"three_points_made": 4.67,
"three_points_att": 13,
"free_throws_made": 5.67,
"free_throws_att": 6.5,
"two_points_made": 5.17,
"two_points_att": 10,
"efficiency": 30,
"true_shooting_att": 25.86
}
}
]
},
{
"id": "6d242a1f-93d0-48e4-96c0-45ff92ba607e",
"year": 2023,
"type": "CT",
"teams": [
{
"id": "7269c5c7-6614-41d8-9415-7ca3243f6612",
"name": "Hawkeyes",
"market": "Iowa",
"alias": "IOWA",
"total": {
"games_played": 3,
"games_started": 3,
"minutes": 108,
"field_goals_made": 27,
"field_goals_att": 67,
"field_goals_pct": 0.403,
"two_points_made": 16,
"two_points_att": 25,
"two_points_pct": 0.64,
"three_points_made": 11,
"three_points_att": 42,
"three_points_pct": 0.262,
"blocked_att": 1,
"free_throws_made": 21,
"free_throws_att": 23,
"free_throws_pct": 0.913,
"offensive_rebounds": 2,
"defensive_rebounds": 19,
"rebounds": 21,
"assists": 34,
"turnovers": 19,
"assists_turnover_ratio": 1.79,
"steals": 6,
"blocks": 1,
"personal_fouls": 6,
"tech_fouls": 0,
"points": 86,
"flagrant_fouls": 0,
"ejections": 0,
"foulouts": 0,
"true_shooting_att": 77.12,
"true_shooting_pct": 0.558,
"efficiency": 87,
"field_goals_at_rim_made": 12,
"field_goals_at_rim_att": 17,
"field_goals_at_rim_pct": 0.706,
"field_goals_at_midrange_made": 2,
"field_goals_at_midrange_att": 5,
"field_goals_at_midrange_pct": 0.4,
"usage_pct": 41.81
},
"average": {
"minutes": 36,
"points": 28.7,
"off_rebounds": 0.67,
"def_rebounds": 6.33,
"rebounds": 7,
"assists": 11.3,
"steals": 2,
"blocks": 0.33,
"turnovers": 6.33,
"personal_fouls": 2,
"flagrant_fouls": 0,
"blocked_att": 0.33,
"field_goals_made": 9,
"field_goals_att": 22.33,
"three_points_made": 3.67,
"three_points_att": 14,
"free_throws_made": 7,
"free_throws_att": 7.67,
"two_points_made": 5.33,
"two_points_att": 8.33,
"efficiency": 29,
"true_shooting_att": 25.71
}
}
]
}
]
}
Player IDs in other Products
Each NCAAWB player.id
is specific to the NCAAWB API. IDs will not transfer to other basketball APIs. To learn more about linking IDs across API products visit this section.
Duplicate Player IDs
A duplicate player profile (and player.id
) can be introduced by mistake. In these cases, we will mark the duplicate player with a status of DUP
. All profiles marked as duplicates can be ignored, but they will remain in our database to limit confusion.
<player xmlns="http://feed.elasticstats.com/schema/basketball/profile-v7.0.xsd" id="d8f2f455-ee4e-4061-8d1d-bd04131bd9a4" status="DUP" full_name="Caitlin Clark" first_name="Caitlin" last_name="Clark" abbr_name="C.Clark" height="72" position="G" primary_position="NA" experience="SR" birth_place="West Des Moines, IA, USA" updated="2024-04-22T20:31:43Z">
<league id="affab7b6-647e-4304-bbe2-1f9d68cd0cea" name="NCAA WOMEN" alias="NCAAW"/>
{
"id": "d8f2f455-ee4e-4061-8d1d-bd04131bd9a4",
"status": "DUP",
"full_name": "Caitlin Clark",
"first_name": "Caitlin",
"last_name": "Clark",
"abbr_name": "C.Clark",
"height": 72,
"position": "G",
"primary_position": "NA",
"experience": "SR",
"birth_place": "West Des Moines, IA, USA",
"updated": "2024-04-22T20:31:43Z",
"league": {
"id": "affab7b6-647e-4304-bbe2-1f9d68cd0cea",
"name": "NCAA WOMEN",
"alias": "NCAAW"
}
}
Access all Player IDs
Iterate through the past Seasonal Statistics feeds for each season and team to obtain all player IDs in the NCAAWB API.
Season IDs
Each NCAAWB season will have its own unique identifier under season.id
. Season types can be CT (Conference Tournament), REG (Regular season), Postseason (PST) in the Seasons feed.
Season IDs will not change once created.
<?xml version="1.0" encoding="UTF-8"?>
<league xmlns="http://feed.elasticstats.com/schema/basketball/seasons-v6.0.xsd" id="affab7b6-647e-4304-bbe2-1f9d68cd0cea" name="NCAA WOMEN" alias="NCAAW">
</season>
<season id="cf5dcb91-e9ec-4993-ba42-5d632306b4c8" year="2023" start_date="2023-11-06" end_date="2024-03-10" status="closed">
<type code="REG" name="Regular Season"/>
</season>
<season id="a871223e-1e70-419e-8697-c0c1c010a7a9" year="2023" start_date="2024-03-20" end_date="2024-04-07" status="closed">
<type code="PST" name="Post-season Tournaments"/>
</season>
<season id="6d242a1f-93d0-48e4-96c0-45ff92ba607e" year="2023" start_date="2024-03-04" end_date="2024-03-17" status="closed">
<type code="CT" name="Conference Tournaments"/>
</season>
<season id="a263b759-0702-45fb-803a-b1c0651da16f" year="2024" start_date="2024-11-04" end_date="2025-03-09" status="closed">
<type code="REG" name="Regular Season"/>
</season>
<season id="3880629e-092d-42d4-a84a-a7c226754fa2" year="2024" start_date="2025-03-19" end_date="2025-04-06" status="closed">
<type code="PST" name="Post-season Tournaments"/>
</season>
<season id="32896a5b-088f-4814-a45c-fc0f0cf69c04" year="2024" start_date="2025-03-04" end_date="2025-03-16" status="closed">
<type code="CT" name="Conference Tournaments"/>
</season>
</league>
{
"league": {
"id": "affab7b6-647e-4304-bbe2-1f9d68cd0cea",
"name": "NCAA WOMEN",
"alias": "NCAAW"
},
"seasons": [
{
"id": "cf5dcb91-e9ec-4993-ba42-5d632306b4c8",
"year": 2023,
"start_date": "2023-11-06",
"end_date": "2024-03-10",
"status": "closed",
"type": {
"code": "REG",
"name": "Regular Season"
}
},
{
"id": "a871223e-1e70-419e-8697-c0c1c010a7a9",
"year": 2023,
"start_date": "2024-03-20",
"end_date": "2024-04-07",
"status": "closed",
"type": {
"code": "PST",
"name": "Post-season Tournaments"
}
},
{
"id": "6d242a1f-93d0-48e4-96c0-45ff92ba607e",
"year": 2023,
"start_date": "2024-03-04",
"end_date": "2024-03-17",
"status": "closed",
"type": {
"code": "CT",
"name": "Conference Tournaments"
}
},
{
"id": "a263b759-0702-45fb-803a-b1c0651da16f",
"year": 2024,
"start_date": "2024-11-04",
"end_date": "2025-03-09",
"status": "closed",
"type": {
"code": "REG",
"name": "Regular Season"
}
},
{
"id": "3880629e-092d-42d4-a84a-a7c226754fa2",
"year": 2024,
"start_date": "2025-03-19",
"end_date": "2025-04-06",
"status": "closed",
"type": {
"code": "PST",
"name": "Post-season Tournaments"
}
},
{
"id": "32896a5b-088f-4814-a45c-fc0f0cf69c04",
"year": 2024,
"start_date": "2025-03-04",
"end_date": "2025-03-16",
"status": "closed",
"type": {
"code": "CT",
"name": "Conference Tournaments"
}
}
]
}
Venue IDs
Each NCAAWB venue will have its own unique identifier under venue.id
. You can locate all active team venues in Team Profile, and each Game feed will include the venue ID for that matchup.
Venue IDs will not change once created.
<team xmlns="http://feed.elasticstats.com/schema/basketball/team-v8.0.xsd" id="f383d855-f0e2-4114-a8f0-bc75647e1bd6" name="Seahawks" market="Wagner" alias="WAG" founded="1883" mascot="The Seahawk" fight_song="Beautiful Upon a Hill" championships_won="0" conference_titles="1" playoff_appearances="0">
<venue id="254f6182-6d7d-401c-8b29-a95817c6bd9c" name="Spiro Sports Center" capacity="2100" address="1 Campus Road" city="Staten Island" state="NY" zip="10301" country="USA">
<location lat="40.615" lng="-74.095833"/>
</venue>
<hierarchy>
<league id="affab7b6-647e-4304-bbe2-1f9d68cd0cea" name="NCAA WOMEN" alias="NCAAW"/>
<division id="4ce010e9-a8ef-4a6e-8fee-e0bb9f58dbb9" name="NCAA Division I Women" alias="D1-W"/>
<conference id="96f9f14f-3a75-455a-9c1c-7b193bc22476" name="Northeast Women" alias="NE-W"/>
</hierarchy>
<coaches>
<coach id="f8188f8c-2ea7-490d-9add-91f171c977b8" full_name="Terrell Coburn" first_name="Terrell" last_name="Coburn" position="Head Coach"/>
</coaches>
<team_colors>
<team_color type="secondary" hex_color="#ffffff">
<rgb_color red="255" green="255" blue="255"/>
</team_color>
<team_color type="primary" hex_color="#004331">
<rgb_color red="0" green="67" blue="49"/>
</team_color>
</team_colors>
{
"id": "f383d855-f0e2-4114-a8f0-bc75647e1bd6",
"name": "Seahawks",
"market": "Wagner",
"alias": "WAG",
"founded": 1883,
"mascot": "The Seahawk",
"fight_song": "Beautiful Upon a Hill",
"championships_won": 0,
"conference_titles": 1,
"playoff_appearances": 0,
"venue": {
"id": "254f6182-6d7d-401c-8b29-a95817c6bd9c",
"name": "Spiro Sports Center",
"capacity": 2100,
"address": "1 Campus Road",
"city": "Staten Island",
"state": "NY",
"zip": "10301",
"country": "USA",
"location": {
"lat": "40.615",
"lng": "-74.095833"
}
}
}
The Sportradar IDs will be consistent across sports and leagues, where available. Meaning those venue IDs would be consistent across APIs.
Updated about 9 hours ago