VOOZH about

URL: https://apify.com/scrap_them_all/cardmarket-magic-trend-scraper

⇱ Cardmarket Magic: The Gathering Trend Scraper Β· Apify


πŸ‘ Cardmarket Magic: The Gathering Trend Scraper avatar

Cardmarket Magic: The Gathering Trend Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store

Cardmarket Magic: The Gathering Trend Scraper

Track Magic: The Gathering prices on Cardmarket β€” Europe's largest trading-card marketplace. Scrape Weekly Top Cards and Best Bargains. Returns ranked cards with stable productId, expansion, current EUR price, thumbnail and product URL. Built for arbitrage, price alerts and BI dashboards.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ scrap_them_all

scrap_them_all

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

0

Monthly active users

2 months ago

Last modified

Share

What does Cardmarket Magic: The Gathering Trend Scraper do?

This Actor scrapes trending Magic: The Gathering cards from Cardmarket β€” Europe's largest trading-card marketplace. It supports both the Weekly Top Cards ranking (the most-sold singles of the week) and the Best Bargains list (cards currently priced below their long-term trend). Each result includes the card name, expansion, current EUR price and a direct product URL.

Run it once from the Apify Console to try it, or call it from the Apify API on any schedule, route the dataset into your warehouse, BI tool, or webhook β€” and let Apify rotate residential proxies and retry failed requests automatically so you never have to babysit a Cloudflare-protected site.

Why use Cardmarket Magic: The Gathering Trend Scraper?

  • Spot price spikes early β€” react to which Magic singles are pumping this week before your competitors do.
  • Source bargains β€” surface cards trading well under their historical trend for arbitrage or personal collection.
  • Power dashboards & alerts β€” pipe structured JSON into Google Sheets, Airtable, Slack or your own backend.
  • No bot-detection headaches β€” Apify's residential proxy network handles Cardmarket's Cloudflare challenge for you.
  • Stable schema β€” built specifically for Cardmarket's trend pages, not a generic crawler.

How to use Cardmarket Magic: The Gathering Trend Scraper

  1. Click Try for free on this Actor's page.
  2. Pick Weekly Top Cards or Best Bargains in the Page to scrape dropdown.
  3. (Optional) Choose a Site language and lower Max results to test cheaply.
  4. Click Start β€” your first run is on the free tier.
  5. Open the Output tab to download the dataset as JSON, CSV, Excel, or HTML.

To automate it, hit Schedule or call the Run actor API endpoint.

Input

Configure the run from the Apify Console Input tab. All fields have sensible defaults β€” only mode is required.

FieldTypeDefaultDescription
modeenumweekly-top-cardsweekly-top-cards or best-bargains
languageenumenCardmarket UI language (en, fr, de, es, it)
maxResultsinteger100Cap on number of cards returned (1–500)
proxyConfigurationobjectApify Proxy, RESIDENTIAL groupProxy settings β€” residential strongly recommended (Cloudflare-protected)
debugSaveHtmlbooleanfalseSave raw HTML to KV store under PAGE_HTML for selector debugging

Example input JSON:

{
"mode":"weekly-top-cards",
"language":"en",
"maxResults":50,
"proxyConfiguration":{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]}
}

Output

Each item pushed to the dataset:

{
"rank":1,
"cardName":"Sol Ring (CMR)",
"expansion":"Commander Legends",
"expansionUrl":"https://www.cardmarket.com/en/Magic/Expansions/Commander-Legends",
"currentPriceEur":1.20,
"imageUrl":"https://product-images.s3.cardmarket.com/51/CMR/512345/512345.jpg",
"productId":512345,
"url":"https://www.cardmarket.com/en/Magic/Products/Singles/Commander-Legends/Sol-Ring",
"scrapedAt":"2026-05-08T18:30:00.000Z",
"sourceMode":"weekly-top-cards",
"game":"Magic"
}

You can download the dataset in various formats such as JSON, HTML, CSV, or Excel from the Output tab.

Data table

FieldTypeDescription
ranknumberPosition on the trend page (1-indexed)
cardNamestringFull card title as listed by Cardmarket (incl. set number)
expansionstringSet / expansion the card belongs to
expansionUrlstringAbsolute URL to the expansion's Cardmarket page
currentPriceEurnumberCurrent price in EUR
imageUrlstringDirect CDN URL to the card thumbnail (see Image hotlinking below)
productIdnumberCardmarket internal numeric product ID (stable join key)
urlstringDirect URL to the card's product page
scrapedAtstringISO 8601 timestamp of when the row was extracted
sourceModestringWhich trend page the row came from
gamestringAlways Magic for this Actor

Image hotlinking β€” important

Cardmarket's image CDN (product-images.s3.cardmarket.com) is fronted by CloudFront with hotlink protection. Loading the imageUrl directly in a browser tab returns HTTP 403. The image only resolves when the request includes a Referer header set to a Cardmarket domain.

This means:

  • βœ… Server-side fetching (curl, requests, fetch in Node, ETL pipelines): add Referer: https://www.cardmarket.com/ to your HTTP request.
  • βœ… Make / Zapier / n8n HTTP modules: add a Referer header to the call.
  • ❌ Direct embed in Notion, Airtable image columns, browser tab: will show a 403 / broken image.

If you need an embed-friendly URL, fetch the image yourself once and host it on your own CDN. A downloadImages opt-in (which would upload each thumbnail to the run's key-value store) can be added on request.

How much does it cost to scrape Cardmarket Magic: The Gathering trends?

Pricing follows the Pay-Per-Event (PPE) model: you pay a flat fee per result, no platform compute fees. A typical run of 100 cards costs around $0.10. The first $5/month of platform usage on the free tier typically covers thousands of free results before you need a paid plan. Residential proxy traffic is included in the per-result event price.

Tips and advanced options

  • Use maxResults: 25 for a cheap smoke-test before scheduling a 500-row daily run.
  • If you're storing results in your own DB, key on url β€” it is the most stable identifier across runs.
  • Need other TCGs? Sister Actors cover PokΓ©mon TCG, Disney Lorcana, Flesh and Blood and Dragon Ball Super Card Game β€” same schema.
  • For one-off ad-hoc analysis, set language to match the localized expansion names you need.

FAQ, disclaimers and support

Is scraping Cardmarket legal? This Actor extracts only publicly visible price and product information; it does not bypass authentication, abuse private endpoints, or store personal data. You are responsible for complying with Cardmarket's Terms of Service and any applicable laws (GDPR, copyright, etc.) in your jurisdiction.

My run got blocked / returned 0 rows. Cardmarket sits behind Cloudflare's managed challenge. Make sure proxyConfiguration uses the RESIDENTIAL group (the default). If issues persist, enable debugSaveHtml: true and inspect the dump in the key-value store.

Can I get a custom variant? Yes β€” use the Issues tab on this Actor's page to request a custom solution (e.g. specific expansions, filtered rarities, deeper crawl into product pages, image embedding, alternative output schema).

Found a bug or extracted 0 rows on a real run? Report it via the Issues tab and include the run URL β€” selectors get patched fast.

You might also like

Cardmarket One Piece Card Game Trend Scraper

scrap_them_all/cardmarket-onepiece-trend-scraper

Track One Piece Card Game prices on Cardmarket β€” Europe's largest trading-card marketplace. Scrape Weekly Top Cards and Best Bargains. Returns ranked cards with stable productId, expansion, current EUR price, thumbnail and product URL. Built for arbitrage, price alerts and BI dashboards.

πŸ‘ User avatar

scrap_them_all

9

Cardmarket Disney Lorcana Trend Scraper

scrap_them_all/cardmarket-lorcana-trend-scraper

Track Disney Lorcana prices on Cardmarket β€” Europe's largest trading-card marketplace. Scrape Weekly Top Cards and Best Bargains. Returns ranked cards with stable productId, expansion, current EUR price, thumbnail and product URL. Built for arbitrage, price alerts and BI dashboards.

πŸ‘ User avatar

scrap_them_all

2

Cardmarket Yu-Gi-Oh! Trend Scraper

scrap_them_all/cardmarket-yugioh-trend-scraper

Track Yu-Gi-Oh! TCG prices on Cardmarket β€” Europe's largest trading-card marketplace. Scrape Weekly Top Cards and Best Bargains. Returns ranked cards with stable productId, expansion, current EUR price, thumbnail and product URL. Built for arbitrage, price alerts and BI dashboards.

πŸ‘ User avatar

scrap_them_all

2

Cardmarket Riftbound (League of Legends TCG) Trend Scraper

scrap_them_all/cardmarket-riftbound-trend-scraper

Track Riftbound (Riot Games' League of Legends TCG) prices on Cardmarket β€” Europe's largest trading-card marketplace. Scrape Weekly Top Cards and Best Bargains. Returns ranked cards with stable productId, expansion, current EUR price, thumbnail and product URL.

πŸ‘ User avatar

scrap_them_all

2

Cardmarket PokΓ©mon Trend Scraper

scrap_them_all/cardmarket-pokemon-trend-scraper

Scrape Cardmarket PokΓ©mon Weekly Top Cards and Best Bargains. Get card name, expansion, current price, price change, rarity and product URL.

πŸ‘ User avatar

scrap_them_all

16

Cardmarket Trend Scraper

ecomscrape/cardmarket-trend-scraper

Automate One Piece card trend analysis with our Cardmarket scraper. Extract weekly top cards, prices, and market data from Europe's largest TCG marketplace efficiently.

ecomscrape

67

Cardmarket Card Details Scraper

ecomscrape/cardmarket-card-page-details-scraper

Extract comprehensive One Piece card details from Cardmarket.com including prices, seller information, and product specifications for market analysis and automated trading.

ecomscrape

121

Scryfall Magic The Gathering Scraper

parseforge/scryfall-mtg-scraper

Scrape Magic The Gathering card data including names, mana costs, types, rarity, images, pricing in USD and EUR, format legalities, and set details. Filter by text query, set code, or format. Covers 100,000+ unique cards across every MTG set.

MTGGoldfish MTG Card Price Index Scraper

jungle_synthesizer/mtggoldfish-mtg-card-price-index-scraper

Scrape the full MTGGoldfish Magic: The Gathering card price index. Extracts paper, online (MTGO), and foil prices for cards across all sets with weekly price-change data.

πŸ‘ User avatar

BowTiedRaccoon

2