# Monitor Pokémon card prices on Cardmarket

**Use case:** 

Track the cheapest Cardmarket Pokémon card listings daily. Schedule automated runs to monitor prices without manually refreshing Cardmarket.

## Input

```json
{
  "productUrl": "https://www.cardmarket.com/en/Pokemon/Products/Singles/151/Blastoise-ex-V3-MEW200",
  "minCondition": "NM",
  "language": "any",
  "minPrice": null,
  "maxPrice": null,
  "sellerCountry": "any",
  "maxResults": 10,
  "enableFairValue": false,
  "isSigned": false,
  "isAltered": false,
  "isFirstEd": false,
  "isPlayset": false,
  "sellerType": "any"
}
```

## Output

```json
{
  "cardName": {
    "label": "Card"
  },
  "sellerName": {
    "label": "Seller"
  },
  "condition": {
    "label": "Condition"
  },
  "language": {
    "label": "Language"
  },
  "quantity": {
    "label": "Qty"
  },
  "price": {
    "label": "Price (EUR)"
  },
  "priceUsd": {
    "label": "Price (USD)"
  },
  "fairValueEur": {
    "label": "Fair Value (EUR)"
  },
  "discountVsFairValuePct": {
    "label": "Deal vs FV (%)"
  },
  "rawPriceEur": {
    "label": "Market (EUR)"
  },
  "discountVsRawPct": {
    "label": "vs Market (%)"
  },
  "price1dChangePct": {
    "label": "1D Change (%)"
  },
  "price7dVs30dChangePct": {
    "label": "7D vs 30D (%)"
  },
  "sellerComment": {
    "label": "Seller comment"
  },
  "productUrl": {
    "label": "Product URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Cardmarket Listings Scraper](https://apify.com/phantom_coder/cardmarket-listings-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/phantom_coder/cardmarket-listings-scraper) to learn more, explore other use cases, and run it yourself.