Discover/eldorado.com API
live

eldorado.com APIeldorado.com

Access Eldorado.gg game listings, seller profiles, buyer reviews, and offer details for in-game currency and accounts via 10 structured API endpoints.

Endpoints
10
Updated
26d ago
Try it

No input parameters required.

api.parse.bot/scraper/4085eceb-c0c6-4f76-92ed-b8a29679870a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4085eceb-c0c6-4f76-92ed-b8a29679870a/get_homepage_featured' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 10 totalclick to expand

Returns trending games and popular offers from the Eldorado.gg homepage. Popular games are sorted by popularGameSortOrder, trending games by trendingRatio descending. Up to 20 results per category.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "popular_games": "array of game objects with gameId, gameName, category, seoAlias, trendingRatio, popularGameSortOrder",
    "trending_games": "array of game objects sorted by trendingRatio descending"
  },
  "sample": {
    "data": {
      "popular_games": [
        {
          "gameId": "137",
          "category": "TopUp",
          "gameName": "Honkai: Star Rail",
          "seoAlias": "honkai-star-rail-top-up",
          "isPopularGame": true,
          "menuGameTitle": "Honkai: Star Rail Oneiric Shards",
          "trendingRatio": 0.104,
          "popularGameSortOrder": 1
        }
      ],
      "trending_games": [
        {
          "gameId": "400",
          "category": "Account",
          "gameName": "Neverness to Everness",
          "seoAlias": "neverness-to-everness-accounts",
          "menuGameTitle": "Neverness to Everness",
          "trendingRatio": 31.6
        }
      ]
    },
    "status": "success"
  }
}

About the eldorado.com API

The Eldorado.gg API exposes 10 endpoints covering in-game currency listings, account offers, seller profiles, and buyer reviews from the Eldorado.gg peer-to-peer marketplace. Use get_currency_listings to pull paginated seller offers filtered by region, server, and faction, or get_account_offer_detail to retrieve full offer metadata including price, delivery time estimates, and similar listings. Response fields span offer pricing, trade environment hierarchies, and seller feedback scores.

Game Discovery and Search

The get_homepage_featured endpoint returns up to 20 popular and trending games, sorted by popularGameSortOrder and trendingRatio respectively — useful for tracking which titles are most active on the marketplace at any given time. search_listings accepts a query string matched against gameName, title, and synonymNames, returning up to 50 results. Because the same gameId can appear across different categories (Currency, Account, TopUp), search results may contain duplicate game entries differentiated by category.

Listings and Offer Details

get_currency_listings and get_account_listings both return paginated offer arrays containing offer, user, userOrderInfo, and deliveryTime objects. Currency listings support three optional trade environment filters — te0 (Region), te1 (Server/Realm), and te2 (Faction) — whose valid values are discoverable via get_game_page. Currency pages return 150 results per page; account pages return 24. get_account_offer_detail takes an offer UUID and returns the full offer object including offerTitle, description, pricePerUnit, tradeEnvironmentValues, attributes, and a similarOffers array. Note that this endpoint only supports Account and CustomItem offers — passing a Currency offer ID returns a not-found error.

Seller Profiles and Reviews

get_seller_profile returns a seller's aggregate reputation data: ratingCount, feedbackScore (percentage positive), positiveCount, negativeCount, isEligibleForWarranty, and disputedAccountOrderRatio. Seller IDs are string-formatted, supporting both Auth0 and Google OAuth formats. get_seller_reviews returns 5 reviews per page using cursor-based pagination; the nextPageCursor field from each response is passed as the cursor parameter for the next page. Reviews can be filtered by category (Currency, Account, CustomItem, TopUp).

Trade Environment and Filter Discovery

get_game_page is the entry point for understanding a game's available filters before querying listings. It returns tradeEnvironments as a nested structure (e.g., Region → Server → Faction for Currency games, or a flat Device list for Account games), alongside attributeFilters and unitSystem. The category parameter is required and accepts values including Currency, Account, CustomItem, TopUp, RequestedBoosting, and GiftCard.

Common use cases
  • Track real-time pricing for in-game currency across regions and servers using get_currency_listings with te0/te1/te2 filters
  • Build a seller vetting tool combining get_seller_profile feedback scores with paginated get_seller_reviews data
  • Monitor trending and popular games on the marketplace using trendingRatio and popularGameSortOrder from get_homepage_featured
  • Aggregate account listing inventory by game using get_account_listings with a known game_id
  • Surface similar competing offers alongside a target listing using the similarOffers array from get_account_offer_detail
  • Discover valid region/server/faction filter values for a game before querying listings via get_game_page tradeEnvironments
  • Cross-reference seller dispute ratios with review sentiment using disputedAccountOrderRatio and buyer review text fields
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Eldorado.gg have an official public developer API?+
Eldorado.gg does not publish an official public developer API or developer documentation for third-party access to its marketplace data.
What trade environment filters does `get_currency_listings` support, and where do valid values come from?+
get_currency_listings accepts three optional filters: te0 (typically Region, e.g. 'EU' or 'NA'), te1 (Server/Realm), and te2 (Faction). Valid values for each filter are specific to the game being queried. Call get_game_page with the relevant game_id and category 'Currency' first — its tradeEnvironments array contains the nested hierarchy of valid filter values.
Can I retrieve reviews for Currency offer transactions, not just Account offers?+
Yes. get_seller_reviews accepts a category parameter that can be set to 'Currency', 'Account', 'CustomItem', or 'TopUp'. If the seller has no reviews in the specified category, the results array returns empty. Filtering by category is optional — omitting it returns reviews across all categories.
Does the API expose buyer identities or full usernames in reviews?+
No. Review objects in get_seller_reviews include only a maskedUsername field for the buyer — full usernames are not exposed. The API covers seller-side data including feedback scores, dispute ratios, and review text. You can fork this API on Parse and revise it to surface additional buyer-side fields if they become accessible.
Does the API cover boosting services or gift card listings, not just Currency and Account categories?+
The get_game_page endpoint accepts 'RequestedBoosting' and 'GiftCard' as valid category values and returns trade environments and attribute filters for those categories. However, there are no dedicated listing endpoints for boosting or gift card offers — only get_currency_listings and get_account_listings are available for paginated offer results. You can fork this API on Parse and revise it to add listing endpoints for those additional categories.
Page content last updated . Spec covers 10 endpoints from eldorado.com.
Related APIs in MarketplaceSee all →
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.
funpay.com API
Browse and monitor gaming marketplace listings and prices on FunPay.com. Search for games and categories, view current listings and pricing, explore the full game directory alphabetically, and look up seller profiles to research reputation and active offers.
cardmarket.com API
Search and browse trading cards across Europe's largest marketplace, accessing detailed card information, listings, seller profiles, and finding the best bargains all in one place. Explore games and expansions to discover available singles and compare prices from multiple sellers.
playerok.com API
Search and browse in-game items, accounts, and gaming services on Playerok's gaming marketplace. Access detailed product listings, game categories, and featured items. Filter by game or category to retrieve available offerings.
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.
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.
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.
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.