# Find Pokemon card prices and sales history on TCGPlayer

**Use case:** 

Pull current Pokemon card prices + sales history from TCGPlayer for collectors. How to check Pokemon card value fast?

## Input

```json
{
  "queries": [
    "pokemon cards",
    "pokemon tcg",
    "charizard"
  ],
  "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.