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.

This API takes change requests — .
Endpoint health
verified 1d ago
list_categories
get_product_offers
list_products
get_product_details
search_products
5/5 passing latest checkself-healing
Endpoints
5
Updated
1mo 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.

This call costs1 credit / call— charged only on success
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.

"""Walkthrough: Eneba SDK — bounded, re-runnable; every call capped."""
from parse_apis.Eneba_Marketplace_API import Eneba, Platform, ProductType, ProductNotFound

client = Eneba()

# Search for products by keyword
for item in client.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 client.products.browse(platform=Platform.STEAM, product_type=ProductType.GAME, limit=3):
    print(item.name, item.slug, item.price)

# Get full product details via direct lookup
try:
    product = client.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)
except ProductNotFound as e:
    print("not found:", e.slug)

# Navigate from summary to detail
hit = client.products.search(query="ARC Raiders", limit=1).first()
if hit:
    detail = hit.details()
    print(detail.name, detail.languages, detail.developers)

# List offers for a product with service fee and total price
product = client.products.get(slug="xbox-elden-ring-xbox-live-key-global")
for offer in product.offers.list(limit=3):
    print(offer.merchant.displayname, offer.price.amount, offer.service_fee.amount, offer.service_fee.percentage, offer.total_price.amount)

# List all store categories
for cat in client.categories.list(limit=3):
    print(cat.name, cat.slug)

print("exercised: products.search, products.browse, products.get, product.offers.list, categories.list")
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
1d 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/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 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.
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.
reebelo.com API
Search Reebelo's refurbished products, browse categories and brands, check real-time pricing and condition-based costs, read customer reviews, and discover current deals all in one place. Get detailed product information including SKU prices and collections to compare and find the best secondhand electronics and accessories.
cel.ro API
cel.ro API
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.
humblebundle.com API
Browse and search Humble Bundle's store products, view active bundles with detailed information, and check the latest Humble Choice monthly games and free offerings. Get instant access to current pricing, bundle contents, and game availability to find the best deals.