Overview
GamerPower API gives you access to a real-time database of free game giveaways and loot from platforms like Steam, Epic Games Store, and more. It requires no authentication, making it perfect for beginners who want to build a giveaway tracker or notification app. Responses include game titles, images, values, and expiration information.
Beginner Tip
Use the platform and type query parameters to filter results. For example, set platform=steam to get only Steam giveaways, or type=game to exclude DLC and loot drops.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://www.gamerpower.com/api/giveaways?platform=steam&type=game&sort-by=value
- Result
- HTTP 200 · application/json · 1,140 bytes · compressed
- Response time
- 38 ms (median of 3) · fastest 36 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by Google Trust Services
- Browser CORS
- Allowed — Access-Control-Allow-Origin: *
- Served by
- cloudflare
- Recorded
- 2026-08-10
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| id | integer | 3716 |
| title | string | Dwarven Realms (Steam) Key Giveaway |
| worth | string | $9.99 |
| thumbnail | string (url) | https://www.gamerpower.com/offers/1/6a59119a8… |
| image | string (url) | https://www.gamerpower.com/offers/1b/6a59119a… |
| description | string | Claim free Steam keys for Dwarven Realms! Dwa… |
| instructions | string | 1. Log in to your free Alienware account and … |
| open_giveaway_url | string (url) | https://www.gamerpower.com/open/dwarven-realm… |
| published_date | string (date) | 2026-07-16 13:15:06 |
| type | string | Game |
| platforms | string | PC, Steam |
| end_date | string | N/A |
| users | integer | 118840 |
| status | string | Active |
Captured Response
Captured from a real request to https://www.gamerpower.com/api/giveaways?platform=steam&type=game&sort-by=value on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
[
{
"id": 3716,
"title": "Dwarven Realms (Steam) Key Giveaway",
"worth": "$9.99",
"thumbnail": "https://www.gamerpower.com/offers/1/6a59119a8eb8d.jpg",
"image": "https://www.gamerpower.com/offers/1b/6a59119a8eb8d.jpg",
"description": "Claim free Steam keys for Dwarven Realms! Dwarven Realms is a 3D action-packed ARPG with epic powers and endless possibilities. Please note this Steam Key gi…",
"instructions": "1. Log in to your free Alienware account and click the button to unlock your key (10 ARP required).\r\n2. Launch the Steam client and click the Games menu opti…",
"open_giveaway_url": "https://www.gamerpower.com/open/dwarven-realms-steam-key-giveaway",
"published_date": "2026-07-16 13:15:06",
"type": "Game",
"platforms": "PC, Steam",
"end_date": "N/A",
"users": 118840,
"status": "Active",
"…": "(2 more fields)"
}
] Field Reference
id Unique identifier for the giveaway entry title Name of the game or item being given away worth Estimated value of the giveaway, e.g. $14.99 or N/A if unknown platforms Comma-separated list of platforms where the giveaway is available end_date Expiration date and time of the giveaway in YYYY-MM-DD HH:MM:SS format open_giveaway_url Direct URL to claim the giveaway on the platform website Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://www.gamerpower.com/api/giveaways?platform=steam&type=game&sort-by=value";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
Returned an HTML error page rather than JSON — worth knowing if your client assumes every response can be parsed as JSON.
{
"status": 0,
"status_message": "No category found, please check the correct parameters."
} Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Animal Crossing: New Horizons
⭐ Beginner's PickThe Animal Crossing: New Horizons API gives you free access to in-game data including villagers, critters, fossils, art, music, and furniture.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.
Digimon Information
⭐ Beginner's PickThe Digimon Information API provides easy access to data about Digimon creatures, including their names, levels, types, and images.
Genshin Impact
⭐ Beginner's PickThe Genshin Impact API provides detailed game data including characters, weapons, artifacts, enemies, and domains from the popular action RPG.