Discover/MMOGA API
live

MMOGA APImmoga.de

Search MMOGA.de for games and digital products via API. Returns prices, discounts, product URLs, and images across paginated results.

This API takes change requests — .
Endpoint health
verified 2h ago
search_games
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

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.

This call costs1 credit / call— charged only on success
Try it
Page number for paginated results. Each page returns up to 20 items.
Search keyword(s) for finding games or digital products.
api.parse.bot/scraper/76aa573b-5755-4409-b78b-733bf49926b4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/76aa573b-5755-4409-b78b-733bf49926b4/search_games?query=FIFA' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

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")
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number for paginated results. Each page returns up to 20 items.
queryrequiredstringSearch keyword(s) for finding games or digital products.
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price drops on specific game titles by comparing price against original_price over 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_price is populated
  • Index MMOGA product URLs for affiliate link generation or catalog syndication
  • Scrape search result counts via total to gauge catalog depth for specific game genres or platforms
  • Populate a deals newsletter with discounted items found where original_price exceeds price
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 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.

Frequently asked questions
Does MMOGA have an official developer API?+
MMOGA does not publish a public developer API or documented data feed. This Parse API provides structured access to MMOGA's product and pricing data.
How does the API handle discounted versus full-price products?+
The 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?+
Not currently. The 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?+
No reviews or seller ratings are returned. The current response shape covers name, URL, current price, original price, and image URL. You can fork this API on Parse and revise it to add a product-detail endpoint that exposes review data.
How many results can I retrieve per query?+
Each page returns up to 20 items. The response includes 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.
Page content last updated . Spec covers 1 endpoint from mmoga.de.
Related APIs in MarketplaceSee all →
g2a.com API
Search for game keys and get real-time pricing, seller ratings, and detailed product information from G2A's marketplace. Browse available categories and find the best deals on digital game licenses from verified sellers.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.
gg.deals API
Search for games and browse current deals across multiple stores while tracking price history to find the best discounts. Get detailed pricing information and historical price data to make informed purchasing decisions.
allkeyshop.com API
Search for games and compare CD key prices across multiple sellers to find the best deals, while tracking price history and viewing detailed store information. Get instant access to current game offers and pricing data to make informed purchasing decisions.
gamestop.com API
Search GameStop's catalog for games and merchandise, browse products by category, view detailed product information including reviews, and discover what's available—all with seamless access that handles Cloudflare protection automatically.
mindfactory.de API
Search and browse PC hardware products from Mindfactory.de, including detailed specifications, pricing, and category listings. Find exactly what components you need with powerful search capabilities across their full inventory of computer parts and peripherals.
cdkeys.com API
Search and browse digital game keys across thousands of titles, view product details, pricing, and discover best sellers and latest releases from CDKeys. Filter games by category, compare options, and stay updated on the newest game key listings available.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.