Open Datasets

The data behind this site's GPU pages.

Free with attribution · CC BY 4.0

Datasets
2
prices · models
GPU models
107
103 with price history
Providers
82
in the price history
Updated
21 Sep 2026
prices, once a day

Datasets

Both files share gpu_slug, so they join.

Weekly rental prices for 103 GPU models across 82 providers.

15,078 rows · 103 models · 981 KB

GPU models

On change

Specifications for 107 GPU models.

112 rows · 107 models · 33 KB

Per-provider prices, daily data and longer history are in the API. Sources are in our methodology.

Use them together

Join prices to specs and every week of price history carries the card's memory, bandwidth and power. Chart what a GB of VRAM costs to rent, or find the cheapest card that fits your model.

CC BY 4.0: Credit GetDeploying and link to the license.

import pandas as pd

gpus = pd.read_csv("https://getdeploying.com/dataset/gpu-models/gpu-models.csv")
prices = pd.read_csv("https://getdeploying.com/dataset/gpu-prices/weekly.csv")
joined = prices.merge(gpus, on="gpu_slug")
joined["usd_per_gb"] = joined.median_price / joined.vram_gb