JSON
Basketball

NBA Hustle Stats

Hustle statistics including deflections, loose balls, charges drawn, contested shots, and screen assists.

Size
15 MB
Records
20,000
Updated
Nov 2025
JSON
Basketball

NBA Lineup Data

Five-man lineup statistics including plus/minus, pace, offensive/defensive ratings for all combinations.

Size
50 MB
Records
75,000
Updated
Nov 2025
API
Basketball

NBA Stats API Data

Official NBA statistics including player stats, team stats, shot charts, and play-by-play data from stats.nba.com.

Size
Variable
Records
500,000
Updated
Nov 2025
CSV
Basketball

Basketball Reference Historical

Complete NBA/ABA historical statistics from 1946 to present. Player and team stats, awards, and advanced metrics.

Size
150 MB
Records
400,000
Updated
Nov 2025
JSON
Basketball

NBA Shot Chart Data

Detailed shot location data for all NBA players including coordinates, shot type, distance, and make/miss outcomes.

Size
500 MB/season
Records
250,000
Updated
Nov 2025
JSON
Basketball

NBA Play-by-Play Data

Every play from every NBA game including timestamps, players involved, play type, and score changes.

Size
2 GB/season
Records
1,500,000
Updated
Nov 2025
CSV
Basketball

NBA Combine Measurements

NBA Draft Combine athletic measurements including height, wingspan, vertical leap, agility, and strength tests.

Size
2 MB
Records
3,000
Updated
Nov 2025
CSV
Basketball

WNBA Statistics

Complete WNBA player and team statistics including box scores, advanced stats, and historical data.

Size
20 MB
Records
30,000
Updated
Nov 2025
CSV
Basketball

EuroLeague Basketball Stats

European basketball league statistics including EuroLeague and EuroCup player/team data.

Size
15 MB
Records
25,000
Updated
Nov 2025
CSV
Basketball

NCAA Basketball Statistics

College basketball stats for all NCAA divisions including team rankings, player stats, and tournament data.

Size
50 MB
Records
100,000
Updated
Nov 2025
CSV
Basketball

NBA Salary & Contract Data

Current and historical NBA player salaries, contract details, cap holds, and team salary information.

Size
5 MB
Records
10,000
Updated
Nov 2025
API
Basketball

NBA Stats API

Official NBA statistics including player, team, and game data

Size
Variable
Records
0
Updated
Nov 2025
JSON
Basketball

NBA Player Tracking Data

Player movement and ball tracking data from NBA games

Size
N/A
Records
0
Updated
Nov 2025
CSV
Basketball

Basketball Reference Scraper Data

Comprehensive NBA statistics and box scores

Size
N/A
Records
0
Updated
Nov 2025

API Access

Access our datasets programmatically through our REST API.

Python Example
import requests
import pandas as pd

# Fetch NBA player statistics
response = requests.get('https://api.sportsdatalab.com/nba/players/2024')
data = response.json()

# Convert to DataFrame
df = pd.DataFrame(data['players'])
print(df.head())
JavaScript Example
// Fetch Premier League match data
fetch('https://api.sportsdatalab.com/soccer/premier-league/matches')
  .then(response => response.json())
  .then(data => {
    console.log(data.matches);
    // Process match data
  });