# Pull MTG card prices and sales data from TCGPlayer

**Use case:** 

Get current MTG card prices and recent sales data from TCGPlayer for MTG players. How to find MTG card market value quickly?

## Input

```json
{
  "queries": [
    "magic the gathering",
    "mtg cards",
    "black lotus"
  ],
  "sortOption": "Price: High to Low",
  "startPage": 1,
  "pageCount": 5,
  "enrichData": true
}
```

## Output

```json
{
  "productName": {
    "label": "Product Name",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "marketPrice": {
    "label": "Market Price",
    "format": "currency"
  },
  "_enrichment": {
    "label": "Sales Data",
    "format": "object"
  },
  "_enriched": {
    "label": "Enriched",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [TCGplayer Data Scraper](https://apify.com/devcake/tcgplayer-data-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/devcake/tcgplayer-data-scraper) to learn more, explore other use cases, and run it yourself.