MMO Games API
Overview
The MMO Games API from MMOBomb provides a database of free-to-play MMO and online games with details like genre, platform, screenshots, and reviews. It is completely free with no API key required, making it a great starting point for game discovery apps or portfolio projects. You can filter games by category, platform, or sort order.
Beginner Tip
Hit the /api/games endpoint to get the full list of games in one request — no pagination needed. Use the ?category= or ?platform= query parameters to narrow down results to a specific genre like mmorpg or pc.
Available Data
Example Response
{
"totalArticles": 100,
"articles": [
{
"title": "Tech Industry Sees Record Growth",
"source": {
"name": "TechNews",
"url": "https://technews.com"
},
"publishedAt": "2025-01-15T08:00:00Z",
"description": "The technology sector reported unprecedented growth...",
"image": "https://example.com/article-image.jpg",
"url": "https://technews.com/article/123"
}
]
} Field Reference
id Unique identifier for the game in the MMOBomb database title The game's display title thumbnail URL of the game's thumbnail image for display in cards or lists short_description Brief summary of the game suitable for a card or preview genre Primary genre of the game (e.g. MMORPG, Shooter) platform Available platform(s) such as PC Windows, Web Browser, or both Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://www.mmobomb.com/api";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Age of Empires II
Age of Empires II provides programmatic access to get information about age of empires ii resources via REST API.
AmiiboAPI
AmiiboAPI provides programmatic access to nintendo amiibo information via REST API.
Animal Crossing: New Horizons
⭐ Beginner's PickThe Animal Crossing: New Horizons API gives you free access to in-game data including villagers, critters, fossils, art, music, and furniture.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.