GamerPower
Live tracker of game giveaways, loot and beta keys
Aggregates current game giveaways, free DLC, loot drops and beta keys from stores and platforms across the web. Each entry lists worth, platform, instructions and expiry so you know what is still claimable. Keyless JSON with open CORS.
GET https://www.gamerpower.com/api/giveaways
[
{
"id": 3703,
"title": "Nexus: The Jupiter Incident (GOG) Giveaway",
"worth": "$9.99",
"description": "Save the galaxy today! Grab Nexus: The Jupiter Incident for free via GOG!"
}
]curl "https://www.gamerpower.com/api/giveaways"const res = await fetch("https://www.gamerpower.com/api/giveaways");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.gamerpower.com/api/giveaways")
print(res.json())/giveawaysPROBEDLive tracker of game giveaways, loot and beta keys
/giveaways?limit=5Paginated variant with limit parameter.
/giveaways?platform=steamGiveaways — documented GET route.
/giveaways?type=gameGiveaways — documented GET route.
/giveaways?sort-by=valueGiveaways — documented GET route.
/giveaways?platform=steam&type=loot&sort-by=popularityGiveaways — 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.
GamerPower: common questions
Is GamerPower free to use?
Yes — GamerPower is a free games API. Free tier: Free, no API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does GamerPower need an API key?
No — GamerPower needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call GamerPower from the browser?
Yes — GamerPower 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 GamerPower up right now?
As of our last scheduled check, GamerPower is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.