Skip to main content

NBA Season Standings API Documentation

Requirement

You need an API key to use SportsBlaze. Get access at www.sportsblaze.com.

Update Frequency

This endpoint updates every 60 minutes.

Description

This endpoint returns NBA teams, season standings, and records.

API Endpoint

https://api.sportsblaze.com/nba/v1/standings/{season}.json

Parameters

key (required)

Your SportsBlaze API key.

team

The team(s) id, name, or abbreviation (e.g. fa62a1a5-2e7d-541f-8e96-e52b64f25a07, Los Angeles Lakers, or LAL). Separate multiple teams with a comma (e.g. Los Angeles Lakers,Boston Celtics).

division

The team(s) division (e.g. Pacific or Atlantic). Separate multiple divisions with a comma (e.g. Pacific,Atlantic).

conference

The team conference (e.g. Eastern or Western).

Example URLs

2024 season standings:

https://api.sportsblaze.com/nba/v1/standings/2024.json?key=your_key

2024 season standings, Boston Celtics team:

https://api.sportsblaze.com/nba/v1/standings/2024.json?key=your_key&team=Boston%20Celtics

2024 season standings, Pacific & Atlantic divisions:

https://api.sportsblaze.com/nba/v1/standings/2024.json?key=your_key&division=Pacific,Atlantic

Example Response

{
"league": {
"id": "nba",
"name": "NBA",
"sport": "Basketball"
},
"season": {
"year": 2024,
"type": "Regular Season"
},
"teams": [
{
"id": "fa62a1a5-2e7d-541f-8e96-e52b64f25a07",
"name": "Los Angeles Lakers",
"abbreviation": "LAL",
"location": "Los Angeles",
"nickname": "Lakers",
"division": "Pacific",
"conference": "Western",
"logo": "https://cdn.nba.com/logos/nba/1610612747/global/L/logo.svg",
"standings": [
{
"name": "Division",
"sequence": 1
},
{
"name": "Conference",
"sequence": 3
}
],
"records": [
{
"split": "Regular Season",
"games": 82,
"wins": 50,
"losses": 32,
"pct": 0.61
}
]
}
],
"updated": "2025-04-17T21:13:01Z"
}