/v1/giveaway
A single giveaway detail
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}