MMOGA APImmoga.de ↗
Search MMOGA.de for games and digital products via API. Returns prices, discounts, product URLs, and images across paginated results.
What is the MMOGA API?
The MMOGA.de API gives developers programmatic access to MMOGA's catalog of games and digital products through a single search_games endpoint. A search query returns up to 20 results per page, each with 5 fields: product name, URL, current price, original price (when a discount applies), and image URL, plus pagination metadata including total match count and total pages available.
curl -X GET 'https://api.parse.bot/scraper/76aa573b-5755-4409-b78b-733bf49926b4/search_games?query=FIFA' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace mmoga-de-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: MMOGA Game Store SDK — search for digital products by keyword."""
from parse_apis.mmoga_de_api import Mmoga, InputFormatInvalid
client = Mmoga()
# Search for FIFA games, cap total items fetched at 5.
for game in client.games.search(query="FIFA", limit=5):
discount = f" (was {game.original_price}€)" if game.original_price else ""
print(f"{game.name} — {game.price}€{discount}")
# Drill into the first result of a different search.
try:
result = client.games.search(query="Elden Ring", limit=1).first()
except InputFormatInvalid as e:
# Raised when the query is rejected by the upstream site.
print(f"Invalid search input: {e.message}")
result = None
if result is not None:
print(f"\nTop result: {result.name}")
print(f" URL: {result.url}")
print(f" Price: {result.price}€")
print("\nexercised: games.search")
Search for games and digital products on MMOGA by keyword. Returns paginated results with 20 items per page, including current price and original price (when discounted). Results are ordered by relevance as determined by the site.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for paginated results. Each page returns up to 20 items. |
| queryrequired | string | Search keyword(s) for finding games or digital products. |
{
"type": "object",
"fields": {
"page": "Current page number",
"query": "The search query that was used",
"total": "Total number of matching products across all pages",
"results": "Array of product objects with name, url, price, original_price, and image_url",
"total_pages": "Total number of pages available"
},
"sample": {
"data": {
"page": 1,
"query": "FIFA",
"total": 107,
"results": [
{
"url": "https://www.mmoga.de/Xbox-Live/Xbox-One-Game-Keys/FIFA-23-Ultimate-Edition-Xbox-One-Series-XS-Download-Code-EU.html",
"name": "FIFA 23 - Ultimate Edition ( Xbox One / Series X|S Download Code ) - EU",
"price": 50.99,
"image_url": null,
"original_price": 99.99
},
{
"url": "https://www.mmoga.de/EA-Games/FIFA-23-5900-FUT-Points-PC-Origin.html",
"name": "FIFA 23 - 5900 FUT Points [PC - Origin]",
"price": 45.99,
"image_url": null,
"original_price": null
}
],
"total_pages": 6
},
"status": "success"
}
}About the MMOGA API
What the API Returns
The search_games endpoint accepts a required query string and an optional page integer. Results are ordered by relevance as MMOGA determines it. Each page returns up to 20 product objects. The top-level response includes query (echoed back), page (current page number), total (total matching products across all pages), total_pages, and the results array.
Product Fields
Each item in results carries name, url, price, original_price, and image_url. The price field reflects the current selling price. original_price is populated only when the product is discounted — when there is no discount, it will be absent or null — making it straightforward to detect marked-down listings programmatically.
Pagination
Use the page parameter to step through result sets. With total and total_pages in every response, you can determine how many additional requests are needed to exhaust a query. There is no cursor or offset mechanism; pagination is strictly page-number based.
The MMOGA API is a managed, monitored endpoint for mmoga.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mmoga.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official mmoga.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Track price drops on specific game titles by comparing
priceagainstoriginal_priceover time - Build a game price comparison tool that queries multiple keywords and aggregates MMOGA listings
- Monitor discount availability for a watchlist of digital products by checking when
original_priceis populated - Index MMOGA product URLs for affiliate link generation or catalog syndication
- Scrape search result counts via
totalto gauge catalog depth for specific game genres or platforms - Populate a deals newsletter with discounted items found where
original_priceexceedsprice
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does MMOGA have an official developer API?+
How does the API handle discounted versus full-price products?+
original_price field in each result object is only populated when the product is discounted. For full-price products, original_price will be absent or null. The price field always reflects the current selling price, so comparing the two fields tells you immediately whether a discount is active.Can I filter results by platform, region, or product category?+
search_games endpoint accepts only a keyword query and a page number — there are no filter parameters for platform (e.g. PC, PlayStation), region, or product type. You can fork this API on Parse and revise it to add those filter parameters if the underlying source exposes them.Does the API return product reviews or seller ratings?+
How many results can I retrieve per query?+
total (total matching products) and total_pages, so you can page through the full result set by incrementing the page parameter. Very broad queries may return a large number of pages.