BYTETOOLS

MMOBomb API

Free MMO games API with no key: free-to-play MMOs and online games with genres, platforms, screenshots, release dates and giveaway data. Tested example.

No API key requiredCORS enabledHTTPSFree tier

Endpoint tested and returned HTTP 200 on 2026-08-20

What is the MMOBomb API?

The MMOBomb API is a free, key-free API cataloguing free-to-play MMOs and online games, with genre, platform, publisher, screenshots and release information, plus a companion endpoint for game giveaways.

MMOBomb focuses specifically on free-to-play online games, which makes it a more curated set than general game databases. Each entry includes a thumbnail, description, genre, platform and a link to play.

The giveaways endpoint is the distinctive part: it tracks currently active free game and DLC giveaways across platforms, which is a genuinely useful feed that most game APIs do not provide at all.

Quick facts

Base URL
https://www.mmobomb.com/api1
Authentication
No API key required.
Rate limit
No published limit; fair use expected.
Pricing
Free.
CORS
Enabled — callable directly from browser JavaScript
Official docs
Read the docs

How to use the MMOBomb API

Every request below was executed against the live API on 2026-08-20, and the response shown is the real body it returned — not an illustration.

1. List free-to-play games

GET https://www.mmobomb.com/api1/games?platform=pc

curl
curl 'https://www.mmobomb.com/api1/games?platform=pc'
JavaScript (fetch)
const res = await fetch("https://www.mmobomb.com/api1/games?platform=pc");
if (!res.ok) throw new Error(`Request failed: ${res.status}`);
const data = await res.json();
console.log(data);
Python (requests)
import requests

res = requests.get("https://www.mmobomb.com/api1/games?platform=pc", timeout=20)
res.raise_for_status()
print(res.json())
Response — HTTP 200 (truncated)
[
  {
    "id": 1238,
    "title": "World of Tanks: HEAT",
    "thumbnail": "https://www.mmobomb.com/g/1238/thumbnail.jpg",
    "short_description": "A free-to-play PvP action game.",
    "game_url": "https://www.mmobomb.com/open/world-of-tanks-heat",
    "genre": "Shooter",
    "platform": "PC (Windows)",
    "publisher": "Wargaming Group Limited",
    "developer": "Wargaming Group Limited",
    "release_date": "2026-05-26",
    "profile_url": "https://www.mmobomb.com/world-of-tanks-heat"
  },
  {
    "id": 1235,
    "title": "Neverness to Everness",
    "thumbnail": "https://www.mmobomb.com/g/1235/thumbnail.jpg",
    "short_description": "A free-to-play open-world supernatural urban adventure game with GTA vibes.",
    "game_url": "https://www.mmobomb.com/open/nte",
    "genre": "RPG",
    "platform": "PC (Windows)",
    "publisher": "Perfect World Entertainment",
    "developer": "Hotta Studio",
    "release_date": "2026-04-29",
    "profile_url": "https://www.mmobomb.com/nte"
  },
  {
    "id": 1187,
    "title": "Throne and Liberty",
    "thumbnail": "https://www.mmobomb.com/g/1187/thumbnail.jpg",
    "short_description": "NCSoft's next big MMORPG release goes global, guild sieges and all.",
    "game_url": "https://www.mmobomb.com/open/throne-and-liberty",
    "genre": "MMORPG",
    "platform": "PC (Windows)",
    "publisher": "Amazon Games",
    "developer": "NCSoft",
    "release_date": "2024-10-01",
    "profile_url": "https://www.mmobomb.com/throne-and-liberty"
  },
  {
    "id": 1113,
    "title": "PUBG: Battlegrounds",
    "thumbnail": "https://www.mmobomb.com/g

Parameters

ParameterTypeRequiredDescription
gamespathOptionalAll games, optionally filtered. games
platformstringOptionalpc, browser or all. pc
categorystringOptionalGenre filter such as mmorpg or shooter. mmorpg
sort-bystringOptionalrelease-date, popularity, alphabetical or relevance. popularity
game?id=integerOptionalDetailed record for one game. 1238

Response fields

idinteger
Game identifier.
titlestring
Game title.
thumbnailstring
Thumbnail image URL.
short_descriptionstring
One-line summary.
game_urlstring
Link to play or download.
genrestring
Primary genre.
platformstring
PC (Windows), Web Browser, or both.
publisher / developerstring
Who publishes and develops the game.
release_datestring
Release date.

What you can build with the MMOBomb API

  • Build a free-to-play game discovery site
  • Track active game and DLC giveaways
  • Recommend MMOs by genre and platform
  • Create a gaming news or aggregator feed

Common errors and how to fix them

Empty array

The filter combination matched nothing.

Fix: Category and platform values are lowercase slugs; check the docs for valid values.

Missing screenshots

The list endpoint returns summaries.

Fix: Request /game?id=<id> for full detail including screenshots and system requirements.

MMOBomb API — frequently asked questions

Is the MMOBomb API free?

Yes, completely free with no API key or registration.

How is it different from FreeToGame?

The two are closely related and cover similar free-to-play catalogues with near-identical response shapes. MMOBomb additionally exposes a giveaways feed.

Can I track free game giveaways?

Yes, the giveaways endpoint lists currently active free game and DLC offers across platforms — a feed most game APIs do not provide.

Does it cover paid games?

No, it is specifically a free-to-play catalogue. For general game data including paid titles, use the Steam store API.

Tools that pair with this API

MMOBomb is an independent third-party service and is not affiliated with ByteTools or ByteVancer. Details on this page were verified on 2026-08-20; always check the official documentation before relying on this API in production, as terms and limits can change.