# Pokemon 151 Special Illustration Rare Prices by Condition

**Use case:** 

Get TCGplayer market prices for the Special Illustration Rare cards of the Pokemon 151 set, highest first, with low, mid and market price by printing and condition. Change the set, rarity or game.

## Input

```json
{
  "searchQueries": [
    "charizard"
  ],
  "game": "pokemon",
  "setName": "151",
  "rarity": [
    "Special Illustration Rare"
  ],
  "sortBy": "priceHighLow",
  "maxItems": 30,
  "includeDetails": true,
  "includePriceHistory": false,
  "historyRange": "quarter",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "game": {
    "label": "Game",
    "format": "text"
  },
  "setName": {
    "label": "Set",
    "format": "text"
  },
  "cardNumber": {
    "label": "Number",
    "format": "text"
  },
  "rarity": {
    "label": "Rarity",
    "format": "text"
  },
  "marketPrice": {
    "label": "Market price (USD)",
    "format": "number"
  },
  "lowestPrice": {
    "label": "Lowest (USD)",
    "format": "number"
  },
  "lowestPriceWithShipping": {
    "label": "Lowest + shipping",
    "format": "number"
  },
  "medianPrice": {
    "label": "Median (USD)",
    "format": "number"
  },
  "totalListings": {
    "label": "Listings",
    "format": "number"
  },
  "searchQuery": {
    "label": "Search",
    "format": "text"
  },
  "url": {
    "label": "TCGplayer",
    "format": "link"
  },
  "type": {
    "label": "Row type",
    "format": "text"
  },
  "errorCode": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/scrapewise/tcgplayer-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
