# Pokemon TCG Card Price Scraper (`spry_frame/pokemon-tcg-scraper`) Actor

Scrapes Pokemon TCG card prices from pokemontcg.io — search by name, set, rarity, or type with TCGPlayer and Cardmarket prices included. No API key required.

- **URL**: https://apify.com/spry\_frame/pokemon-tcg-scraper.md
- **Developed by:** [COSENT GROUP](https://apify.com/spry_frame) (community)
- **Categories:** Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Pokemon TCG Card Price Scraper

Search any Pokemon Trading Card Game card and get live market prices in seconds. Returns TCGPlayer and Cardmarket prices, rarity, set info, card number, and images — perfect for collectors, investors, and resellers tracking card values across every era of the game.

Data is sourced from [pokemontcg.io](https://pokemontcg.io), which aggregates official card data and real-time market pricing.

***

### What You Get

Each result includes:

| Field | Description |
|---|---|
| `name` | Full card name including suffix (e.g. "Charizard VMAX") |
| `setName` | Expansion set the card belongs to |
| `number` | Card number within its set (e.g. "4/102") |
| `rarity` | Rarity tier (Rare Holo, Special Illustration Rare, Hyper Rare, etc.) |
| `supertype` | Card type: Pokémon, Trainer, or Energy |
| `subtypes` | Subtypes (VMAX, EX, GX, Basic, etc.) |
| `tcgLow` | Lowest listed price on TCGPlayer (USD) |
| `tcgMid` | Mid price on TCGPlayer (USD) |
| `tcgMarket` | TCGPlayer market price — the most reliable value indicator (USD) |
| `tcgHigh` | Highest listed price on TCGPlayer (USD) |
| `cmAvg` | Average sell price on Cardmarket (EUR) — European market |
| `cmTrend` | Cardmarket trend price (EUR) — smoothed recent average |
| `imageUrl` | High-resolution card image |
| `tcgPlayerUrl` | Direct link to buy the card on TCGPlayer |
| `scrapedAt` | Timestamp when data was collected |

***

### Use Cases

- **Collectors** — Track the market value of your binder before buying or selling
- **Investors** — Find undervalued cards across sets and rarities, sorted by price
- **Resellers** — Monitor TCGPlayer prices and compare with European Cardmarket rates for arbitrage opportunities
- **Set trackers** — Pull all cards from a specific expansion to see which are worth chasing
- **New release monitoring** — Filter by the latest sets to see which pulls are most valuable

***

### Input Options

| Input | Type | Default | Description |
|---|---|---|---|
| `keywords` | String list | `["Charizard"]` | Card names to search. Partial matches supported — "Pikachu" returns "Pikachu VMAX", "Pikachu V", etc. |
| `setName` | String | *(all)* | Filter by expansion set name (e.g. "Base Set", "Scarlet & Violet", "Hidden Fates") |
| `rarityFilter` | String list | *(all)* | Filter by rarity. Options: `Common`, `Uncommon`, `Rare`, `Rare Holo`, `Rare Ultra`, `Rare Secret`, `Rare Rainbow`, `Illustration Rare`, `Special Illustration Rare`, `Hyper Rare`, `Double Rare`, `ACE SPEC Rare` |
| `supertypeFilter` | Select | All | Filter by card type: `Pokémon`, `Trainer`, or `Energy` |
| `minTcgPrice` | Number | `0` | Minimum TCGPlayer market price in USD (0 = no filter) |
| `maxTcgPrice` | Number | `0` | Maximum TCGPlayer market price in USD (0 = no filter) |
| `sortBy` | Select | `price` | Sort results by: `price` (highest first), `name` (A–Z), or `set` (set name + card number) |
| `maxResults` | Integer | `100` | Maximum number of cards to return (0 = no limit) |

***

### Example Results

```json
[
  {
    "name": "Charizard ★ δ",
    "setName": "Dragon Frontiers",
    "number": "100/101",
    "rarity": "Rare Holo Star",
    "supertype": "Pokémon",
    "subtypes": "Basic",
    "tcgLow": "$3500.00",
    "tcgMid": "$4000.00",
    "tcgMarket": "$4000.00",
    "tcgHigh": "$5000.00",
    "cmAvg": "€3200.00",
    "cmTrend": "€3500.00",
    "imageUrl": "https://images.pokemontcg.io/ex15/100_hires.png",
    "tcgPlayerUrl": "https://www.tcgplayer.com/product/...",
    "scrapedAt": "2026-08-01T20:41:53.000Z"
  },
  {
    "name": "Charizard",
    "setName": "Base Set",
    "number": "4/102",
    "rarity": "Rare Holo",
    "supertype": "Pokémon",
    "subtypes": "Basic",
    "tcgLow": "$650.00",
    "tcgMid": "$800.00",
    "tcgMarket": "$800.43",
    "tcgHigh": "$1200.00",
    "cmAvg": "€700.00",
    "cmTrend": "€750.00",
    "imageUrl": "https://images.pokemontcg.io/base1/4_hires.png",
    "tcgPlayerUrl": "https://www.tcgplayer.com/product/...",
    "scrapedAt": "2026-08-01T20:41:53.000Z"
  }
]
```

***

### Tips

- Leave `keywords` empty and set a `setName` to pull all cards from a specific set (great for Hidden Fates, Celebrations, or any vintage set)
- Use `minTcgPrice` with `rarityFilter: ["Special Illustration Rare"]` to find high-value SIRs across recent sets
- Set `sortBy` to `set` when building a checklist for a specific expansion
- `tcgMarket` is the most accurate price indicator — it reflects recent actual sale prices, not just listed asks
- Cards without TCGPlayer pricing data will show `null` for TCG fields; Cardmarket prices are in EUR

# Actor input Schema

## `keywords` (type: `array`):

Card names or keywords to search for (e.g. "Charizard", "Pikachu VMAX"). Leave empty to browse by set or rarity.

## `setName` (type: `string`):

Filter by expansion set name (e.g. "Scarlet & Violet", "Base Set"). Leave empty for all sets.

## `rarityFilter` (type: `array`):

Only return cards of these rarities. Leave empty for all. Options: Common, Uncommon, Rare, Rare Holo, Rare Ultra, Rare Secret, Rare Rainbow, Illustration Rare, Special Illustration Rare, Hyper Rare, Double Rare, ACE SPEC Rare.

## `supertypeFilter` (type: `string`):

Filter by card supertype.

## `minTcgPrice` (type: `number`):

Only return cards with a TCGPlayer market price at or above this value. 0 = no filter.

## `maxTcgPrice` (type: `number`):

Only return cards with a TCGPlayer market price at or below this value. 0 = no filter.

## `sortBy` (type: `string`):

How to sort the results.

## `maxResults` (type: `integer`):

Maximum number of cards to return. 0 = no limit.

## Actor input object example

```json
{
  "keywords": [
    "Charizard"
  ],
  "setName": "",
  "rarityFilter": [],
  "supertypeFilter": "",
  "minTcgPrice": 0,
  "maxTcgPrice": 0,
  "sortBy": "price",
  "maxResults": 100
}
```

# Actor output Schema

## `name` (type: `string`):

Full card name including suffix (e.g. 'Charizard VMAX').

## `setName` (type: `string`):

Expansion set name.

## `number` (type: `string`):

Card number within its set (e.g. '4/102').

## `rarity` (type: `string`):

Card rarity (e.g. Rare Holo, Rare Ultra, Common).

## `supertype` (type: `string`):

Card supertype: Pokémon, Trainer, or Energy.

## `subtypes` (type: `string`):

Card subtypes (e.g. VMAX, EX, GX, Basic).

## `tcgLow` (type: `string`):

Lowest listed price on TCGPlayer (USD).

## `tcgMid` (type: `string`):

Mid price on TCGPlayer (USD).

## `tcgMarket` (type: `string`):

TCGPlayer market price — the most reliable value indicator (USD).

## `tcgHigh` (type: `string`):

Highest listed price on TCGPlayer (USD).

## `cmAvg` (type: `string`):

Average price on Cardmarket (EUR) — European market.

## `cmTrend` (type: `string`):

Cardmarket trend price (EUR) — smoothed recent average.

## `imageUrl` (type: `string`):

High-resolution card image.

## `tcgPlayerUrl` (type: `string`):

Link to the card on TCGPlayer.

## `scrapedAt` (type: `string`):

Timestamp when this data was collected.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "Charizard"
    ],
    "rarityFilter": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("spry_frame/pokemon-tcg-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "keywords": ["Charizard"],
    "rarityFilter": [],
}

# Run the Actor and wait for it to finish
run = client.actor("spry_frame/pokemon-tcg-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "Charizard"
  ],
  "rarityFilter": []
}' |
apify call spry_frame/pokemon-tcg-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=spry_frame/pokemon-tcg-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/9OAbbp3C8Mpm1lWdt/builds/CqUtScXfzbSKBdsmG/openapi.json
