FreeToGame
Searchable database of free-to-play PC and browser games
A catalog of free-to-play titles across PC and browser, complete with genres, platforms, publishers and release dates. The /games endpoint returns the full list, and filters let you narrow by category or platform. No signup or key required.
GET https://www.freetogame.com/api/games
[
{
"id": 540,
"title": "Overwatch",
"short_description": "A hero-focused first-person team shooter from Blizzard Entertainment.",
"genre": "Shooter",
"platform": "PC (Windows)",
"release_date": "2022-10-04"
}
]curl "https://www.freetogame.com/api/games"const res = await fetch("https://www.freetogame.com/api/games");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.freetogame.com/api/games")
print(res.json())/gamesPROBEDSearchable database of free-to-play PC and browser games
/games?limit=5Paginated variant with limit parameter.
/games%3C/span%3ESpan%3E — documented GET route.
/games?platform=%3CspanGame title metadata.
/games?category=%3CspanGame title metadata.
/games?sort-by=%3CspanGame title metadata.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
FreeToGame: common questions
Is FreeToGame free to use?
Yes — FreeToGame is a free games API. Free tier: Free, no API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does FreeToGame need an API key?
No — FreeToGame needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call FreeToGame from the browser?
Yes — FreeToGame returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is FreeToGame up right now?
As of our last scheduled check, FreeToGame is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.