Games currently free on the Epic Games Store
API · /epicgames-api
Epic Games Store Free Games API
Live free-games promotions from the Epic Games Store. The games that are free to claim right now (with the window they are free) and the ones becoming free soon — each with title, description, publisher, original price, store slug, cover image and store URL. The iconic "Epic free game this week" as a clean API for gaming, deal-alert, calendar and dashboard apps. Distinct from cross-store deal aggregators — Epic's own giveaways.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 164 ms
- Server probes · 24h
- Subscribers
- 3,014
- active
- Total calls
- 12
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,000 calls / month
- 5 requests / second
- Hard cap (429 above quota, no overage)
- 2,000 calls/month
- 5 req/sec
- Current + upcoming free games
- No credit card
Starter
€7.00 /month
- 50,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 50k calls/month
- 10 req/sec
- All countries & locales
- Email support
Pro
€29.00 /month
- 300,000 calls / month
- 25 requests / second
- Hard cap (429 above quota, no overage)
- 300k calls/month
- 25 req/sec
- High-volume polling
- Priority support
Business
€89.00 /month
- 2,000,000 calls / month
- 60 requests / second
- Hard cap (429 above quota, no overage)
- 2M calls/month
- 60 req/sec
- Commercial use
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Game Giveaways API
Free game, DLC, in-game loot and beta-key giveaways as an API, powered by GamerPower — the tracker of currently-active, limited-time giveaways across every store and platform. Where a games catalogue lists what exists and a deals feed lists discounts, this API tracks what you can claim free right now before it expires. /v1/giveaways returns the live giveaways, filterable by platform (steam, epic-games-store, gog, ubisoft, ps4, ps5, xbox-one, xbox-series-xs, switch, android, ios, vr and more), by type (game, loot, beta) and by sort order (date, value, popularity) — each giveaway with its id, title, retail worth, type, the platforms it covers, the end date, the direct claim URL, thumbnail and cover image, a short description and how many users have already claimed it. /v1/giveaway?id=3664 returns a single giveaway's full detail with description and step-by-step claim instructions (it returns found:false when that giveaway has already expired, since giveaways are time-limited). /v1/worth returns the number of active giveaways and their total estimated retail value in USD, optionally filtered by platform and type. Ideal for "free games this week" widgets, deal-alert and Discord/Telegram bots, gaming-news sites and savings trackers. Distinct from game catalogues and price/deal feeds — these are claim-it-free, time-limited offers. Data from GamerPower (free to use).
api.oanor.com/gamerpower-api
Funki API
Live EVM on-chain data for Funki (chain id 33979) — an OP-Stack Layer-2 built for gaming and social applications, with gas paid in ETH — served directly from the public Funki JSON-RPC with server-side resilience. The status endpoint returns the chain and network id, the latest block height and the node client version. The block endpoint returns a block by number (or the latest) with its hash, parent hash, timestamp, transaction count, gas used and gas limit, miner and size. The gas endpoint returns the current gas price in both wei and gwei. The balance endpoint returns the ETH balance and outgoing transaction count for any address, converted from base wei (18 decimals) into whole ETH with exact big-integer scaling. Every figure is read live from the chain over JSON-RPC — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for explorers, wallet and dashboard tooling, gas trackers, address monitors and analytics apps across the Funki gaming and social ecosystem. Live keyless upstream. 5 endpoints.
api.oanor.com/funki-api
XPLA API
Live EVM on-chain data for XPLA (chain id 37) — the Cosmos-built gaming and entertainment Layer-1 from Com2uS, whose native token is XPLA, served through its Dimension EVM via public JSON-RPC nodes with multi-node failover. The status endpoint returns the chain and network id, the latest block height and the node client version. The block endpoint returns a block by number (or the latest) with its hash, parent hash, timestamp, transaction count, gas used and gas limit, miner and size. The gas endpoint returns the current gas price in both wei and gwei. The balance endpoint returns the XPLA balance and outgoing transaction count for any EVM address, converted from base wei (18 decimals) into whole XPLA with exact big-integer scaling. Every figure is read live from the chain over JSON-RPC — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for explorers, wallet and dashboard tooling, gas trackers, address monitors and analytics apps across the XPLA gaming and NFT ecosystem. Live keyless upstream. 5 endpoints.
api.oanor.com/xpla-api
Passage Chain API
Real-time on-chain data for Passage (chain-id passage-2), a Cosmos-SDK Layer-1 for gaming, the metaverse and NFTs, with PASG as its native coin, secured by delegated proof-of-stake. The status endpoint returns the chain id, latest block height and time, proposer and node application version so you can confirm the chain is live and producing blocks. The validators endpoint returns the full bonded validator set — each moniker, operator address, stake in PASG, commission rate and jailed flag — sorted by stake, plus the total bonded and not-bonded PASG. The supply endpoint returns the total PASG supply (in PASG and base upasg), the bonded amount and the bonded ratio. The governance endpoint returns the most recent on-chain governance proposals with title, status and voting window. The meta endpoint documents the chain, denom and decimals. Reads a live Passage Cosmos-SDK LCD node directly (with mirror fallback), so values are current to the latest block. Live, nothing stored. 5 endpoints. This serves chain-level staking, supply and governance data; for individual NFTs or game assets use a dedicated indexer API.
api.oanor.com/passage-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Epic Games Store Free Games API?
What's the rate limit for Epic Games Store Free Games API?
How much does Epic Games Store Free Games API cost?
Can I cancel my subscription anytime?
Is Epic Games Store Free Games API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/epicgames-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/epicgames-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/epicgames-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/epicgames-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.