CSV
Golf

PGA Tour Statistics

Official PGA Tour player statistics including strokes gained, driving, approach, and putting metrics.

Size
50 MB
Records
100,000
Updated
Nov 2025
API
Golf

Data Golf API

Advanced golf analytics including predicted strokes gained, skill decomposition, and player rankings.

Size
Variable
Records
50,000
Updated
Nov 2025
CSV
Golf

European Tour Stats

DP World Tour player statistics and tournament results for European professional golf.

Size
30 MB
Records
40,000
Updated
Nov 2025
CSV
Golf

Golf Course Database

Course ratings, slope ratings, yardage, and hole-by-hole data for courses worldwide.

Size
10 MB
Records
15,000
Updated
Nov 2025
CSV
Golf

LPGA Tour Statistics

Women's professional golf statistics from LPGA Tour including scoring, driving, and putting data.

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

ShotLink Data

Shot-level PGA Tour data with precise location tracking for every shot on tour.

Size
500 MB
Records
1,000,000
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
  });