Basketball APIs: New Clinched Status
June 3rd, 2025
We've added a division_playoff_berth
clinched status in our Rankings endpoint for all versions of our NBA, WNBA, and G League APIs.
This status signifies a team has clinched their division and a playoff berth. In the rarer case that a team clinches a division and not a playoff berth, clinched="division"
will be used.
☑️ Sample Requests:
Rankings (NBA) - https://api.sportradar.com/nba/trial/v8/en/seasons/{season_year}/REG/rankings.json
Rankings (WNBA) - https://api.sportradar.com/wnba/trial/v8/en/seasons/{season_year}/REG/rankings.json
🔢 Versions
- NBA v8, NBA v7, NBA v5
- WNBA v8, WNBA v7, WNBA v4
- G League v8, G League v7, G League v5
🔁 Endpoints Affected
⚙️ Return Sample
"conferences": [
{
"id": "3960cfac-7361-4b30-bc25-8d393de6f62f",
"name": "EASTERN CONFERENCE",
"alias": "EASTERN",
"divisions": [
{
"id": "582d6502-9a93-4a8d-8785-69374d732875",
"name": "Atlantic",
"alias": "ATLANTIC",
"teams": [
{
"id": "583eccfa-fb46-11e1-82cb-f4ce4684ea4c",
"name": "Celtics",
"market": "Boston",
"sr_id": "sr:team:3422",
"reference": "1610612738",
"rank": {
"conference": 2,
"division": 1,
"clinched": "division_playoff_berth"
}
},
{
"id": "583ec70e-fb46-11e1-82cb-f4ce4684ea4c",
"name": "Knicks",
"market": "New York",
"sr_id": "sr:team:3421",
"reference": "1610612752",
"rank": {
"conference": 3,
"division": 2,
"clinched": "playoff_berth"
}
},
{
"id": "583ecda6-fb46-11e1-82cb-f4ce4684ea4c",
"name": "Raptors",
"market": "Toronto",
"sr_id": "sr:team:3433",
"reference": "1610612761",
"rank": {
"conference": 11,
"division": 3,
"clinched": "eliminated"
}
},
{
"id": "583ec9d6-fb46-11e1-82cb-f4ce4684ea4c",
"name": "Nets",
"market": "Brooklyn",
"sr_id": "sr:team:3436",
"reference": "1610612751",
"rank": {
"conference": 12,
"division": 4,
"clinched": "eliminated"
}
},
{
"id": "583ec87d-fb46-11e1-82cb-f4ce4684ea4c",
"name": "76ers",
"market": "Philadelphia",
"sr_id": "sr:team:3420",
"reference": "1610612755",
"rank": {
"conference": 13,
"division": 5,
"clinched": "eliminated"
}
}
]
},