DropTheHQ/benchgecko-ai-pricing
BenchGecko AI Model Pricing 2026 Current pricing data for 413 AI models across 57 providers, with benchmark performance scores for cost-efficiency analysis. Sourced from BenchGecko. Why This Dataset Choosing an AI model is a price-performance tradeoff. This dataset enables: Cost-efficiency rankings (score per dollar) Provider pricing comparisons Open source vs proprietary cost analysis Budget optimization for production deployments Dataset Summary… See the full description on the dataset page: https://huggingface.co/datasets/DropTheHQ/benchgecko-ai-pricing.
BenchGecko AI Model Pricing 2026
Current pricing data for 413 AI models across 57 providers, with benchmark performance scores for cost-efficiency analysis. Sourced from BenchGecko.
Why This Dataset
Choosing an AI model is a price-performance tradeoff. This dataset enables:
- Cost-efficiency rankings (score per dollar)
- Provider pricing comparisons
- Open source vs proprietary cost analysis
- Budget optimization for production deployments
Dataset Summary
Columns
Usage
import pandas as pd
df = pd.read_csv("hf://datasets/DropTheHQ/benchgecko-ai-pricing/pricing.csv")
# Most cost-efficient models
efficient = df[df["input_price_per_mtok"].notna() & (df["input_price_per_mtok"] > 0)]
efficient = efficient.sort_values("price_per_score_point")
print(efficient[["model_name", "provider", "avg_benchmark_score", "input_price_per_mtok", "price_per_score_point"]].head(15))
# Cheapest models with score > 70
good_cheap = df[(df["avg_benchmark_score"] > 70) & (df["input_price_per_mtok"] > 0)]
print(good_cheap.nsmallest(10, "input_price_per_mtok")[["model_name", "provider", "avg_benchmark_score", "input_price_per_mtok"]])
# Average pricing by provider
by_provider = df[df["input_price_per_mtok"].notna()].groupby("provider").agg(
models=("model_name", "count"),
avg_input_price=("input_price_per_mtok", "mean"),
avg_score=("avg_benchmark_score", "mean")
).round(2).sort_values("avg_input_price")
print(by_provider.head(15))Source
Data from BenchGecko -- an independent AI tracking platform. Explore the full pricing calculator at benchgecko.ai/pricing.
License
CC BY 4.0
Citation
@dataset{benchgecko_pricing_2026,
title={BenchGecko AI Model Pricing 2026},
author={BenchGecko},
year={2026},
url={https://benchgecko.ai},
publisher={Hugging Face},
license={CC BY 4.0}
}