CSV
MMA

UFC Stats Database

Official UFC fight statistics including significant strikes, takedowns, submissions, and control time.

Size
30 MB
Records
50,000
Updated
Nov 2025
CSV
MMA

FightMetric Data

Detailed MMA fight metrics including round-by-round statistics and historical fight records.

Size
25 MB
Records
40,000
Updated
Nov 2025
CSV
MMA

Sherdog Fighter Database

Fighter records, biographical data, and fight history from Sherdog for all major MMA organizations.

Size
40 MB
Records
75,000
Updated
Nov 2025
CSV
MMA

Tapology MMA Rankings

Community-driven MMA rankings and fight records across all weight classes and organizations.

Size
15 MB
Records
30,000
Updated
Nov 2025
CSV
MMA

Bellator Fight Stats

Fight statistics and results from Bellator MMA events.

Size
10 MB
Records
15,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
  });