BYTETOOLS

GamerPower API

Free game giveaways API with no key: currently active free game, DLC and in-game loot giveaways across Steam, Epic, GOG and more, with value and end dates. Tested.

No API key requiredCORS enabledHTTPSFree tier

Endpoint tested and returned HTTP 200 on 2026-08-20

What is the GamerPower API?

GamerPower is a free, key-free API tracking currently active game giveaways — free games, DLC and in-game loot — across Steam, Epic Games, GOG, Ubisoft and other platforms, with estimated value and expiry dates.

This is a genuinely time-sensitive dataset, which makes it more useful than a static game database: it tracks what is free to claim right now and when each offer expires.

The `worth` field gives each giveaway's normal retail price, so you can rank offers by value, and `end_date` lets you warn users before an offer closes — the two things a giveaway tracker actually needs.

Quick facts

Base URL
https://www.gamerpower.com/api
Authentication
No API key required.
Rate limit
No published hard limit; fair use expected.
Pricing
Free.
CORS
Enabled — callable directly from browser JavaScript
Official docs
Read the docs

How to use the GamerPower API

Every request below was executed against the live API on 2026-08-20, and the response shown is the real body it returned — not an illustration.

1. List active game giveaways

GET https://www.gamerpower.com/api/giveaways?platform=pc

curl
curl 'https://www.gamerpower.com/api/giveaways?platform=pc'
JavaScript (fetch)
const res = await fetch("https://www.gamerpower.com/api/giveaways?platform=pc");
if (!res.ok) throw new Error(`Request failed: ${res.status}`);
const data = await res.json();
console.log(data);
Python (requests)
import requests

res = requests.get("https://www.gamerpower.com/api/giveaways?platform=pc", timeout=20)
res.raise_for_status()
print(res.json())
Response — HTTP 200 (truncated)
[
  {
    "id": 3750,
    "title": "Grow And Go: Cozy Deliveries (Epic Games) Giveaway",
    "worth": "$4.99",
    "thumbnail": "https://www.gamerpower.com/offers/1/6a863f21649e6.jpg",
    "image": "https://www.gamerpower.com/offers/1b/6a863f21649e6.jpg",
    "description": "Check out this cozy giveaway! Download Grow And Go: Cozy Deliveries for free via Epic Games Store! Grow And Go: Cozy Deliveries is a 3d cozy delivery and farming game.",
    "instructions": "1. Click the button to visit the giveaway page.\r\n2. Register or log in to your Epic Games Store account.\r\n3. Click the button to add the game to your library",
    "open_giveaway_url": "https://www.gamerpower.com/open/grow-and-go-cozy-deliveries-epic-games-giveaway",
    "published_date": "2026-08-19 19:41:21",
    "type": "Game",
    "platforms": "PC, Epic Games Store",
    "end_date": "2026-08-22 23:59:00",
    "users": 3930,
    "status": "Active",
    "gamerpower_url": "https://www.gamerpower.com/grow-and-go-cozy-deliveries-epic-games-giveaway",
    "open_giveaway": "https://www.gamerpower.com/open/grow-and-go-cozy-deliveries-epic-games-giveaway"
  },
  {
    "id": 3749,
    "title": "World of Tanks 16th Anniversary Gift Pack",
    "worth": "N/A",
    "thumbnail": "https://www.gamerpower.com/offers/1/6a8321de68bfd.jpg",
    "image": "https://www.gamerpower.com/offers/1b/6a8321de68bfd.jpg",
    "description": "World of Tanks is turning 16, and you can claim a bunch of in-game items for free just by creating an account. Even if you’re already a WoT player, there are gifts for you too!",
    "instructions": "1.

Parameters

ParameterTypeRequiredDescription
giveawayspathOptionalAll active giveaways. giveaways
platformstringOptionalpc, steam, epic-games-store, gog, ps4, xbox-one and more. steam
typestringOptionalgame, loot or beta. game
sort-bystringOptionaldate, value or popularity. value
giveaway?id=integerOptionalOne specific giveaway. 525

Response fields

idinteger
Giveaway identifier.
titlestring
Giveaway name.
worthstring
Normal retail value, e.g. "$4.99".
thumbnail / imagestring
Artwork URLs.
open_giveaway_urlstring
Where to claim it.
published_date / end_datestring
When it opened and closes.
platformsstring
Comma-separated platforms.
typestring
Game, DLC or Early Access.

What you can build with the GamerPower API

  • Build a free game alert service or Discord bot
  • Show currently claimable games on a gaming site
  • Rank giveaways by value to surface the best offers
  • Notify users before a giveaway expires

Common errors and how to fix them

Expired giveaways appearing

Listings can lag their end date.

Fix: Check end_date yourself before presenting an offer as claimable.

worth is a formatted string

It includes a currency symbol.

Fix: Strip the symbol before sorting numerically, or use sort-by=value.

Empty results

Filter combination too narrow.

Fix: Platform and type values are lowercase slugs; check the docs for valid values.

GamerPower API — frequently asked questions

Is the GamerPower API free?

Yes, completely free with no API key or registration.

What does it track?

Currently active giveaways for free games, DLC and in-game loot across Steam, Epic, GOG, Ubisoft, PlayStation, Xbox and more.

How do I avoid showing expired offers?

Check the end_date field yourself. Listings occasionally lag their actual expiry, so filtering on end_date is worth doing client-side.

Can I sort by how valuable a giveaway is?

Yes, use sort-by=value. The `worth` field is a formatted currency string, so sorting server-side is easier than parsing it yourself.

Tools that pair with this API

GamerPower is an independent third-party service and is not affiliated with ByteTools or ByteVancer. Details on this page were verified on 2026-08-20; always check the official documentation before relying on this API in production, as terms and limits can change.