cardmarket.com APIcardmarket.com ↗
Access Cardmarket card prices, seller listings, expansions, and best bargains for Magic, Pokemon, Yu-Gi-Oh, and more via a structured REST API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/6e8ae7ea-a15a-4125-aada-1e116c8060b5/get_games' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the list of all supported trading card games on Cardmarket.
No input parameters required.
{
"type": "object",
"fields": {
"games": "array of objects with name (string) and slug (string)"
},
"sample": {
"data": {
"games": [
{
"name": "Magic: The Gathering",
"slug": "Magic"
},
{
"name": "Pokémon",
"slug": "Pokemon"
},
{
"name": "Yu-Gi-Oh!",
"slug": "YuGiOh"
},
{
"name": "One Piece Card Game",
"slug": "OnePiece"
},
{
"name": "Lorcana",
"slug": "Lorcana"
}
]
},
"status": "success"
}
}About the cardmarket.com API
This API exposes 8 endpoints covering Cardmarket's catalog of trading card games, returning card details, paginated seller listings, expansion sets, and best bargain feeds. Use get_card_details to retrieve price trend data, lowest available price, and the first page of seller offers for any card identified by its game, expansion, and card slug. Supported games include Magic: The Gathering, Pokemon, Yu-Gi-Oh, One Piece, Lorcana, and Star Wars Unlimited.
Games, Expansions, and Card Browsing
get_games returns the full list of supported trading card games as name/slug pairs — those slugs feed directly into every other endpoint. get_expansions accepts a game slug and returns each set's name, slug, url, card_count, and release_date. Once you have an expansion slug, get_expansion_singles paginates through all singles in that set, exposing name, url, rarity, available_count, and lowest_price per card.
Card Details and Listings
get_card_details requires three parameters — game, expansion, and card slug — and returns the card's full URL, Price Trend, From (lowest listed price), Available items, card number, and the first page of seller listings. For deeper pagination of seller offers, get_card_listings provides the same trio of identifiers plus an optional page parameter, returning listing objects that include seller name, country, condition, attributes, price, quantity, and any seller comment.
Search and Discovery
search_singles lets you query by partial card name within a specific game. Results include the card's expansion, rarity, available_count, and lowest_price, and support pagination via the page parameter. get_best_bargains returns the current best-value cards for a given game as a list of objects with name, url, expansion, and price — useful for surfacing underpriced inventory without a specific card target.
Seller Profiles
get_seller_profile takes a game slug and a username (as it appears in listing data) and returns the seller's profile URL and username. Additional profile fields are included when the page exposes them, making it straightforward to enrich listing data with seller context.
- Track price trends for specific Magic: The Gathering or Pokemon cards using
get_card_detailsprice guide fields. - Build an expansion release calendar by calling
get_expansionsfor each supported game and sorting byrelease_date. - Aggregate lowest prices across all singles in a set via
get_expansion_singlesto identify the cheapest available cards. - Monitor seller listings for a high-demand card using paginated
get_card_listingsresults filtered by condition. - Surface daily deal opportunities by polling
get_best_bargainsfor multiple game slugs. - Search for a card by partial name across games using
search_singlesand comparelowest_pricevalues in results. - Enrich a card listing dataset with seller location and feedback by resolving usernames through
get_seller_profile.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Cardmarket provide an official developer API?+
What does `get_card_details` return beyond the price?+
get_card_details returns the card's Price Trend, the From field (current lowest listed price), Available items count, card number within the set, the expansion name under Printed in, the full page URL, and the first page of seller listings. Each listing includes seller name, country, condition, price, and quantity.Does the API cover foil or alternate-art variants separately in listings?+
get_card_listings include an attributes field that carries variant information (such as foil or language) when it appears on the listing. The search and expansion endpoints do not split results by variant at the index level — they surface one entry per card slug. You can fork this API on Parse and revise it to add variant-level filtering if your use case requires it.Is seller feedback or rating data available from `get_seller_profile`?+
username and url, plus any additional fields present on the public profile page. Structured feedback scores and sale history are not guaranteed response fields in the current schema. You can fork this API on Parse and revise it to extract additional seller reputation fields.