RAWG.io
RAWG.io — free tier with API key
RAWG.io exposes a free-tier JSON API. Register for an API key if required; we verified a public or demo endpoint.
GET https://api.rawg.io/docs/
{
"swagger": "2.0",
"info": {
"title": "RAWG Video Games Database API",
"description": "\nThe largest open video games database.\n\n### Why build on RAWG\n- More than 350,000 games for 50 platforms including mobiles.\n- Rich metadata: tags, genres, developers, publishers, individual creators, official websites, release dates,\nMetacritic ratings.\n- Where to buy: links to digital distribution services\n- Similar games based on visual similarity.\n- Player activity data: Steam average playtime and RAWG player counts and ratings.\n- Actively developing and constantly getting better by user contribution and our algorithms.\n\n### Terms of Use\n- Free for personal use as long as you attribute RAWG as the source of the data and/or images and add an active\nhyperlink from every page where the data of RAWG is used.\n- Free for commercial use for startups and hobby projects with not more than 100,000 monthly active users or 500,000\npage views per month. If your project is larger than that, email us at [api@rawg.io](mailto:api@rawg.io) for\ncommercial terms.\n- No cloning. It would not be cool if you used our API to launch a clone of RAWG. We know it is not always easy\nto say what is a duplicate and what isn't. Drop us a line at [api@rawg.io](mailto:api@rawg.io) if you are in doubt,\nand we will talk it through.\n- You must include an API key with every request. The key can be obtained at https://rawg.io/apidocs.\nIf you don’t provide it, we may ban your requests.\n\n__[Read more](https://rawg.io/apidocs)__.\n",
"version": "v1.0"
},
"host": "api.rawg.io",
"schemes": [
"https"
],
"basePath": "/api",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"securityDefinitions": {}
}curl "https://api.rawg.io/docs/"const res = await fetch("https://api.rawg.io/docs/");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.rawg.io/docs/")
print(res.json())THIS API IS DEAD — NOTHING TO RUN
/api/games?key=YOUR_API_KEY&search=portalPROBEDSearch games by title.
/api/games/3498?key=YOUR_API_KEYGame details by RAWG ID (Grand Theft Auto V).
/api/platforms?key=YOUR_API_KEYAll gaming platforms RAWG tracks.
/api/genres?key=YOUR_API_KEYGenre list with slug identifiers.
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.
RAWG.io: common questions
Is RAWG.io free to use?
Yes — RAWG.io is a free games API. Free tier: Free tier — key may be required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does RAWG.io need an API key?
Yes — RAWG.io needs a free API key, which you pass on each request. Rate limits: Unpublished.
Can I call RAWG.io from the browser?
Not directly — RAWG.io doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is RAWG.io up right now?
As of our last scheduled check, RAWG.io is dead. We re-probe it every sweep — the status badge and uptime chart above always show the latest.