Discover/Eneba API
live

Eneba APIeneba.com

Access Eneba product listings, seller offers, pricing, and platform filters via 5 structured endpoints. Search games, DLC, gift cards, and more.

Endpoint health
verified 2d ago
search_products
list_products
get_product_details
get_product_offers
list_categories
5/5 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the Eneba API?

The Eneba API gives developers structured access to digital game key marketplace data across 5 endpoints, covering product search, filtered browsing, detailed product metadata, and per-product seller offers. The get_product_offers endpoint, for example, returns a ranked list of seller offers with price, merchant details, MSRP, discount percentage, cashback, and stock status — all for a given product slug.

Try it
Page number (0-indexed)
Number of results per page
Search keyword
Region filter (e.g., 'global', 'united_states', 'north_america', 'europe', 'lithuania')
api.parse.bot/scraper/f819ae34-69c3-4bce-9faa-0f123f99cbe1/<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/f819ae34-69c3-4bce-9faa-0f123f99cbe1/search_products?page=0&limit=5&query=Elden+Ring&region=global' \
  -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 eneba-com-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.

from parse_apis.eneba_marketplace_api import Eneba, ProductSummary, Product, Platform, ProductType

eneba = Eneba()

# Search for products by keyword
for item in eneba.products.search(query="Elden Ring", region="global", limit=3):
    print(item.name, item.price, item.currency, item.platform)

# Browse Steam games using enum filters
for item in eneba.products.browse(platform=Platform.STEAM, product_type=ProductType.GAME, limit=5):
    print(item.name, item.slug, item.price)

# Get full product details
product = eneba.products.get(slug="steam-arc-raiders-steam-key-pc-global")
print(product.name, product.released_at, product.drm.name)
for genre in product.genres:
    print(genre.name, genre.value)

# Navigate from summary to detail
for summary in eneba.products.search(query="ARC Raiders", limit=1):
    detail = summary.details()
    print(detail.name, detail.languages, detail.developers)

# List offers for a product
product = eneba.products.get(slug="steam-arc-raiders-steam-key-pc-global")
for offer in product.offers.list():
    print(offer.merchant.displayname, offer.price.amount, offer.price.currency, offer.is_in_stock)

# List all store categories
for cat in eneba.categories.list():
    print(cat.name, cat.slug)
All endpoints · 5 totalmissing one? ·

Full-text search over Eneba's product catalog. Returns paginated results with pricing and platform information. Pagination is 0-indexed. Each product includes its lowest USD price, platform/DRM, region availability, and wishlist popularity.

Input
ParamTypeDescription
pageintegerPage number (0-indexed)
limitintegerNumber of results per page
queryrequiredstringSearch keyword
regionstringRegion filter (e.g., 'global', 'united_states', 'north_america', 'europe', 'lithuania')
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "total": "integer, total number of results",
    "nb_pages": "integer, total number of pages",
    "products": "array of product summary objects with name, slug, image, price, currency, regions, platform, product_type, wishlist_count"
  },
  "sample": {
    "data": {
      "page": 0,
      "total": 207,
      "nb_pages": 42,
      "products": [
        {
          "name": "Elden Ring Steam Key (PC) UNITED STATES",
          "slug": "steam-elden-ring-pc-steam-key-united-states",
          "image": "https://imgproxy.eneba.games/example.jpg",
          "price": 53.72,
          "regions": [
            "united_states"
          ],
          "currency": "USD",
          "platform": "steam",
          "product_type": "game",
          "wishlist_count": 2018
        }
      ]
    },
    "status": "success"
  }
}

About the Eneba API

Search and Browse Products

The search_products endpoint accepts a query string and optional page, limit, and region parameters, returning paginated results with product name, slug, price, currency, platform, product_type, and wishlist_count. The list_products endpoint layers in additional filters: type (e.g., game, dlc, giftcard, top_up, emoney_prepaid) and platform (e.g., steam, xbox, psn, nintendo). Both endpoints share the same paginated response shape — page, total, nb_pages, and a products array — and use 0-indexed page numbers.

Product Details and Metadata

get_product_details takes a product slug and returns the full metadata record: DRM information (including name, slug, and an activation guide article slug), genres, regions (as code/name pairs), languages, developers, releasedAt (ISO 8601), and a description object that includes an HTML text field and meta content. Slugs are sourced from search_products or list_products results.

Seller Offers and Pricing

get_product_offers returns all available seller offers for a given slug, sorted by price ascending. Each offer object includes id, price, merchant info, msrp, msrpDiscountPercent, isInStock, isPreOrder, and cashback. The response also surfaces total_offers and a has_next_page boolean for pagination awareness. This makes it straightforward to compare the cheapest available key across multiple merchants for any product.

Categories

list_categories requires no parameters and returns the top-level category taxonomy — an array of objects with name, slug, and url. This is useful for building navigation or mapping Eneba's category structure to your own classification system.

Reliability & maintenanceVerified

The Eneba API is a managed, monitored endpoint for eneba.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when eneba.com 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 eneba.com 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
2d ago
Latest check
5/5 endpoints 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 Steam game keys across multiple Eneba sellers using get_product_offers
  • Build a game price comparison tool that surfaces lowest-price and in-stock offers with MSRP discount data
  • Aggregate Eneba listings by platform (e.g., PSN, Nintendo) using the platform filter in list_products
  • Populate a game database with developer credits, genre tags, supported languages, and release dates from get_product_details
  • Monitor which regions a product is available in by inspecting the regions array returned by get_product_details
  • Identify pre-order listings and cashback-eligible offers for upcoming game releases via get_product_offers
  • Map Eneba's full category taxonomy for classification or navigation using list_categories
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Eneba have an official public developer API?+
Eneba does not currently offer a publicly documented developer API for third-party access to its marketplace data. This Parse API provides structured access to product, pricing, and offer data without requiring a direct relationship with Eneba.
What does `get_product_offers` return, and how are offers ordered?+
The endpoint returns all available seller offers for a product slug, sorted by price ascending. Each offer includes price, merchant details, msrp, msrpDiscountPercent, isInStock, isPreOrder, and cashback. The response also includes total_offers and a has_next_page boolean so you can detect when additional pages of offers exist.
Are there any known limitations with the `region` parameter?+
Yes. In search_products and list_products, certain region values like europe may return errors rather than filtered results. Reliable region values include global, united_states, and country-level codes such as lithuania. Testing your specific region value before relying on it in production is advisable.
Does the API expose user reviews or review scores for products?+
Not currently. The API covers product metadata (genres, languages, developers, description), pricing, and seller offer details, but does not return user review text or aggregate review scores. You can fork this API on Parse and revise it to add a reviews endpoint if that data is available on Eneba product pages.
Can I filter `get_product_offers` by merchant rating or seller criteria?+
The endpoint returns merchant info within each offer object, but does not currently accept filter parameters to narrow offers by merchant rating or seller attributes — all available offers for the slug are returned sorted by price. You can fork this API on Parse and revise it to add server-side filtering logic on the returned offer set.
Page content last updated . Spec covers 5 endpoints from eneba.com.
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.
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.
kinguin.net API
Search Kinguin's gaming catalog to find products, compare offers, and read user reviews, or browse trending games, bestsellers, and new releases. Get detailed product information to make informed purchasing decisions across their entire inventory.
cel.ro API
cel.ro API
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.
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.
blendermarket.com API
Browse and search Blender Market (Superhive) to discover 3D assets, add-ons, and creator tools. Access detailed product information, reviews, FAQs, documentation, and creator profiles. Filter by category, sort results, and explore current sales.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.