Skip to content
GET /v1/giveaway

A single giveaway detail

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gamerpower-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/gamerpower-api/v1/giveaway" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gamerpower-api/v1/giveaway", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gamerpower-api/v1/giveaway");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/gamerpower-api/v1/giveaway",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "id": 3664,
        "found": true,
        "giveaway": {
            "id": 3664,
            "type": "Game",
            "image": "https://www.gamerpower.com/offers/1b/6a1b24ffbbc52.jpg",
            "title": "Moonrise Fall (Steam) Giveaway",
            "worth": "$9.99",
            "status": "Active",
            "end_date": "2026-06-02 23:59:00",
            "claim_url": "https://www.gamerpower.com/open/moonrise-fall-steam-giveaway",
            "platforms": [
                "PC",
                "Steam"
            ],
            "thumbnail": "https://www.gamerpower.com/offers/1/6a1b24ffbbc52.jpg",
            "description": "Download Moonrise Fall for free on Steam until June 2! Moonrise Fall is a 2d exploration puzzle game with an immersive pixel graphics world and unique puzzles to solve.",
            "instructions": "1. Click the button to visit the giveaway page. 2. Download this game directly via Steam before the offer expires. 3. That´s it! Have fun!",
            "users_claimed": 17010,
            "gamerpower_url": "https://www.gamerpower.com/moonrise-fall-steam-giveaway",
            "published_date": "2026-05-30 13:57:19",
            "short_description": "Download Moonrise Fall for free on Steam until June 2! Moonrise Fall is a 2d exploration puzzle game with an immersive pixel graphics world and unique puzzles to solve."
        }
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:38.746Z",
        "request_id": "ae141ed0-e92c-48d4-b7c1-9e0377ef82cb"
    },
    "status": "ok",
    "message": "Giveaway retrieved",
    "success": true
}