CheapShark
Live PC-game deals and prices across digital stores
CheapShark aggregates current sale prices for PC/Steam games across dozens of storefronts and exposes them as JSON. The /deals feed returns titles with sale vs. normal price, savings percentage, store and Steam IDs, and Metacritic/Steam ratings. Keyless and CORS-friendly.
GET https://www.cheapshark.com/api/1.0/deals?pageSize=1
[
{
"title": "NBA 2K26",
"dealID": "GKIJ7VPpvf+rslYeeAq3F7p3nSpEFg2gYzczWDcfvwE=",
"storeID": "23",
"salePrice": "8.35",
"normalPrice": "69.99",
"savings": "88.069724",
"steamAppID": "3472040"
}
]curl "https://www.cheapshark.com/api/1.0/deals?pageSize=1"const res = await fetch("https://www.cheapshark.com/api/1.0/deals?pageSize=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.cheapshark.com/api/1.0/deals?pageSize=1")
print(res.json())/deals?pageSize=1PROBEDLive PC-game deals and prices across digital stores
/deals?limit=5Deals — documented GET route.
/deals?page=1Deals — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
CheapShark: common questions
Is CheapShark free to use?
Yes — CheapShark is a free games API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does CheapShark need an API key?
No — CheapShark needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call CheapShark from the browser?
Yes — CheapShark returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is CheapShark up right now?
As of our last scheduled check, CheapShark is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.