Discover/Eldorado API
live

Eldorado APIeldorado.com

Access Eldorado.gg game listings, seller profiles, reviews, and offer details for in-game currency, accounts, and boosting services via a structured API.

This API takes change requests — .
Endpoint health
verified 16h ago
get_seller_reviews
list_account_games
get_homepage_featured
list_currency_games
get_account_listings
12/12 passing latest checkself-healing
Endpoints
12
Updated
20d ago

What is the Eldorado API?

The Eldorado.gg API covers 12 endpoints that expose marketplace data across in-game currency, account, and boosting categories. Use get_currency_listings to pull paginated seller offers with region, server, and faction filters, or call get_account_offer_detail to retrieve full offer descriptions, seller verification status, delivery time estimates, and similar listings — all in structured JSON.

This call costs2 credits / call— charged only on success
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.
Call it over HTTPgrab 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 · 12 totalmissing one? ·

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 summary objects sorted by popularGameSortOrder",
    "trending_games": "array of game summary objects sorted by trendingRatio descending"
  },
  "sample": {
    "data": {
      "popular_games": [
        {
          "title": "Items",
          "gameId": "259",
          "category": "CustomItem",
          "gameName": "Steal a Brainrot",
          "imageAlt": "steal a brainrot brainrots",
          "seoAlias": "steal-a-brainrot-brainrots",
          "gameGroup": "Roblox",
          "isHighRisk": false,
          "createdDate": "2025-06-19T06:38:39.7206464Z",
          "legacyUrlId": null,
          "synonymNames": [
            "Steal a Brainrot"
          ],
          "isPopularGame": true,
          "menuGameTitle": "Steal a Brainrot",
          "isPopularGameV2": true,
          "isSingleOfferGame": false,
          "popularGameSortOrder": 1,
          "popularGameSortOrderV2": 1
        }
      ],
      "trending_games": []
    },
    "status": "success"
  }
}

About the Eldorado API

What the API Covers

The Eldorado.gg API surfaces data from the Eldorado.gg peer-to-peer game marketplace. It covers four listing types — Currency, Account, CustomItem, and boosting requests — plus homepage discovery, seller profiles, and buyer reviews. Game IDs are consistent across endpoints: '0' is World of Warcraft, '16' is Fortnite, '10' is Old School RuneScape. Use list_currency_games or list_account_games to enumerate all supported titles and their gameId values before querying listings.

Listings and Filters

get_currency_listings accepts a required game_id and optional te0, te1, and te2 parameters that represent hierarchical trade environments — typically Region, Server, and Faction. The valid values for those filters come from get_game_page, which returns a nested tradeEnvironments array and an attributeFilters array specific to the game/category pair. Currency listing pages return up to 150 results each, with totalPages and recordCount fields for pagination. Account listings via get_account_listings use a smaller page size of 24 and support page for iteration. get_account_offer_detail takes a UUID offer_id and returns offerTitle, description, pricePerUnit, tradeEnvironmentValues, attributes, delivery stats, and a similarOffers array — but only works for Account and CustomItem categories; passing a Currency offer ID returns a not-found error.

Seller Data

get_seller_profile and get_seller_reviews accept a user_id (OAuth-prefixed string) and return feedback metrics including feedbackScore, positiveCount, negativeCount, and disputedAccountOrderRatio. Reviews are paginated with a cursor pattern via nextPageCursor and previousPageCursor, returning 5 records per page, and can be filtered by category (Currency, Account, CustomItem, TopUp). If you have a username rather than an ID, get_user_by_username resolves the username to an internal ID and returns combined profile data including isVerifiedSeller, isOnline, createdDate, and orderStats.

Discovery

get_homepage_featured returns two arrays: popular_games sorted by popularGameSortOrder and trending_games sorted by trendingRatio descending, with up to 20 entries each. search_listings matches a keyword against gameName, title, and synonymNames fields and returns up to 50 results — note that the same gameId can appear multiple times if it exists in more than one category.

Reliability & maintenanceVerified

The Eldorado API is a managed, monitored endpoint for eldorado.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when eldorado.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 eldorado.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
16h ago
Latest check
12/12 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
  • Monitor in-game currency prices across regions by polling get_currency_listings with te0/te1/te2 filters for a specific game.
  • Aggregate seller reputation data by combining get_seller_profile metrics with paginated get_seller_reviews results.
  • Track trending and popular games on the marketplace using the trendingRatio and popularGameSortOrder fields from get_homepage_featured.
  • Build a game account inventory browser by iterating get_account_listings pages and fetching full details via get_account_offer_detail.
  • Resolve a seller's username to their full profile and order history using get_user_by_username.
  • Discover available server and faction filter options for a game before querying listings using get_game_page tradeEnvironments.
  • Compare boosting service availability across games by paginating get_boosting_listings for multiple game IDs.
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 Eldorado.gg have an official public developer API?+
Eldorado.gg does not publish a documented public developer API. This Parse API provides structured access to the marketplace data that Eldorado.gg exposes on its platform.
How do I find the correct te0, te1, and te2 filter values for get_currency_listings?+
Call get_game_page with the target game_id and category set to 'Currency'. The response includes a tradeEnvironments array with nested childTradeEnvironments. The top-level entries correspond to te0 (typically Region), their children to te1 (Server/Realm), and grandchildren to te2 (Faction). Pass the string values from that structure directly into the listing filter parameters.
Does get_account_offer_detail work for currency offers?+
No. The endpoint only supports Account and CustomItem category offer IDs. Passing a Currency offer ID returns a not-found error. For currency offer details, use get_currency_listings, which returns offer, user, userOrderInfo, and deliveryTime fields inline for each result.
Does the API expose completed transaction history or order data?+
Not currently. The API covers active listings, seller rating aggregates (positiveCount, negativeCount, feedbackScore), and buyer review text — but not individual completed order records or transaction timestamps. You can fork this API on Parse and revise it to add an endpoint targeting order history data if that surface becomes accessible.
Are gift card or TopUp listings accessible through this API?+
get_game_page accepts 'GiftCard' and 'TopUp' as category values and will return trade environment and attribute filter metadata for those categories. However, there are no dedicated listing endpoints for GiftCard or TopUp offers equivalent to get_currency_listings or get_account_listings. You can fork this API on Parse and revise it to add paginated listing endpoints for those categories.
Page content last updated . Spec covers 12 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.
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.
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.
eneba.com API
Access data from eneba.com.
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.