| name | kaggle-api-guide |
| description | Download datasets, manage competitions and notebooks via Kaggle API |
| metadata | {"openclaw":{"emoji":"📈","category":"tools","subcategory":"code-exec","keywords":["kaggle","datasets","competitions","notebooks","data-science","machine-learning"],"source":"https://www.kaggle.com/docs/api"}} |
Kaggle API Guide
Overview
Kaggle is the world's largest data science and machine learning community, hosting thousands of datasets, competitions, and computational notebooks. The Kaggle API provides programmatic access to these resources, enabling researchers to download datasets, submit competition entries, manage kernels (notebooks), and explore the Kaggle ecosystem from the command line or scripts.
For academic researchers, Kaggle is a valuable resource for accessing curated, well-documented datasets across diverse domains including healthcare, natural language processing, computer vision, economics, and social sciences. Many published research papers use Kaggle datasets as benchmarks, and the platform's competition infrastructure provides standardized evaluation frameworks for comparing methods.
The Kaggle API is available as a Python CLI tool and library. It requires a free Kaggle account and API token for authentication. The API supports dataset search and download, competition data retrieval, kernel management, and model access.
Authentication
A free Kaggle API token is required. Generate one from your Kaggle account settings at https://www.kaggle.com/settings.
Download the kaggle.json credentials file and place it in the standard location:
mkdir -p ~/.kaggle
chmod 600 ~/.kaggle/kaggle.json
Alternatively, use environment variables:
export KAGGLE_USERNAME=$KAGGLE_USERNAME
export KAGGLE_KEY=$KAGGLE_KEY
Install the CLI tool:
pip install kaggle
Core Endpoints
Search Datasets
Find datasets by keyword, file type, or license.
kaggle datasets list -s "climate change" --sort-by votes
kaggle datasets list -s "medical imaging" --file-type csv --max-size 1000000
Download a Dataset
kaggle datasets download -d "heptapod/titanic" --unzip -p ./data/titanic/
kaggle datasets download -d "yelp-dataset/yelp-dataset" -f "yelp_academic_dataset_review.json" -p ./data/
List and Join Competitions
kaggle competitions list
kaggle competitions download -c "house-prices-advanced-regression-techniques" -p ./data/house-prices/
Submit to a Competition
kaggle competitions submit -c "house-prices-advanced-regression-techniques" \
-f ./submission.csv -m "Random forest baseline v1"
kaggle competitions submissions -c "house-prices-advanced-regression-techniques"
Manage Notebooks (Kernels)
kaggle kernels list -s "transformer nlp" --sort-by voteCount
kaggle kernels pull "username/notebook-name" -p ./notebooks/
kaggle kernels push -p ./my-notebook/
Python Example: Automated Dataset Discovery and Download
import subprocess
import json
import os
def search_kaggle_datasets(query, sort_by="votes", max_results=10):
"""Search Kaggle datasets and return structured results."""
cmd = [
"kaggle", "datasets", "list",
"-s", query,
"--sort-by", sort_by,
"--max-size", "50000000",
"--csv"
]
result = subprocess.run(cmd, capture_output=True, text=True)
lines = result.stdout.strip().split("\n")
if len(lines) < 2:
return []
headers = lines[0].split(",")
datasets = []
for line in lines[1:max_results + 1]:
values = line.split(",")
dataset = dict(zip(headers, values))
datasets.append(dataset)
return datasets
def download_dataset(dataset_ref, output_dir="./data"):
"""Download a Kaggle dataset by reference."""
os.makedirs(output_dir, exist_ok=True)
cmd = [
"kaggle", "datasets", "download",
"-d", dataset_ref,
"--unzip",
"-p", output_dir
]
result = subprocess.run(cmd, capture_output=, text=)
result.returncode == :
()
:
()
datasets = search_kaggle_datasets()
ds datasets[:]:
()
()
()
()
Python Example: Using the Kaggle Python API Directly
from kaggle.api.kaggle_api_extended import KaggleApi
api = KaggleApi()
api.authenticate()
datasets = api.dataset_list(search="genomics", sort_by="updated")
for ds in datasets[:5]:
print(f"{ds.ref}: {ds.title} ({ds.size})")
metadata = api.dataset_view("nih-chest-xrays/data")
print(f"Title: {metadata.title}")
print(f"Size: {metadata.totalBytes}")
print(f"Description: {metadata.description[:200]}")
api.dataset_download_files(
"nih-chest-xrays/sample",
path="./data/chest-xrays/",
unzip=True
)
Common Research Patterns
Benchmark Dataset Access: Download well-established datasets used in published research for reproducibility studies. Kaggle hosts canonical versions of many benchmark datasets referenced in ML papers.
Competition as Evaluation Framework: Use Kaggle competitions as standardized evaluation environments with leaderboards and held-out test sets. Submit predictions from novel methods to compare against state-of-the-art approaches.
Data Exploration Notebooks: Search for and pull community notebooks that explore datasets relevant to your research. These often contain valuable preprocessing code, exploratory analysis, and baseline models.
Collaborative Research Datasets: Upload processed research datasets to Kaggle for sharing with collaborators and the broader community, enabling others to reproduce and extend your work.
Cross-Domain Transfer: Search across Kaggle's diverse dataset collection to find datasets from adjacent domains that could be useful for transfer learning or cross-domain validation studies.
Rate Limits and Best Practices
- API rate limits: Kaggle imposes daily limits on API calls; typical free accounts allow several hundred requests per day
- Download limits: Large datasets may take significant time and disk space; check sizes before downloading
- Competition rules: Always accept competition rules on the Kaggle website before attempting to download competition data via API
- Kernel push format: When pushing notebooks, include a
kernel-metadata.json file specifying the kernel type, language, and datasets
- Authentication security: Never commit
kaggle.json to version control; use environment variables in CI/CD pipelines
- Dataset versioning: Kaggle datasets support versions; specify version numbers for reproducibility in research
- Large files: For datasets over 10GB, consider using the Kaggle CLI rather than the Python API for more reliable downloads
References