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
14d 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 →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.