# Pokemon TCGPLAYER

**Use case:** 

Extract TCGPLAYER data filtered by Pokemon. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "searchQuery": "Pikachu",
  "maxItems": 10,
  "cardType": "Pokemon"
}
```

## Output

```json
{
  "productName": {
    "label": "Card Name",
    "format": "string"
  },
  "productUrl": {
    "label": "Card URL",
    "format": "string"
  },
  "setName": {
    "label": "Set Name",
    "format": "string"
  },
  "cardNumber": {
    "label": "Card Number",
    "format": "string"
  },
  "rarity": {
    "label": "Rarity",
    "format": "string"
  },
  "cardType": {
    "label": "Card Type",
    "format": "string"
  },
  "marketPrice": {
    "label": "Market Price",
    "format": "number"
  },
  "lowestPrice": {
    "label": "Lowest Price",
    "format": "number"
  },
  "lowestPriceWithShipping": {
    "label": "Lowest + Shipping",
    "format": "number"
  },
  "totalListings": {
    "label": "Total Listings",
    "format": "integer"
  },
  "foilOnly": {
    "label": "Foil Only",
    "format": "boolean"
  },
  "releaseDate": {
    "label": "Release Date",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

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