PriceCharting Scraper - Game & Card Prices avatar

PriceCharting Scraper - Game & Card Prices

Pricing

$5.00 / 1,000 product scrapeds

Go to Apify Store
PriceCharting Scraper - Game & Card Prices

PriceCharting Scraper - Game & Card Prices

Scrape PriceCharting prices for video games, Pokemon/sports cards, comics and sealed products. Correct condition labels per category (Loose/CIB/New or Ungraded/Grade 9/PSA 10). No browser, no start fee.

Pricing

$5.00 / 1,000 product scrapeds

Rating

0.0

(0)

Developer

Gio

Gio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

PriceCharting Scraper — Video Game, Pokémon Card & Collectible Prices

Scrape current market prices from PriceCharting for video games, Pokémon and sports cards, comics, sealed products and consoles — by search, by product URL, or by pulling an entire console/set list.

Why this scraper

It reports the right price labels for each category. PriceCharting reuses the same internal fields for every product type, which is why many scrapers return a Pokémon card's PSA 10 price under a field called new_price. This Actor reads the actual labels from the page, so you get:

Product typePrice fields you get
Video gamesLoose, Complete (CIB), New, Graded, Box Only, Manual Only
Trading cardsUngraded, Grade 7, Grade 8, Grade 9, Grade 9.5, PSA 10

No browser is used — pages are fetched over plain HTTP, so runs are fast and cheap.

What you can scrape

  • Search"charizard base set", "zelda ocarina n64"
  • Product URLshttps://www.pricecharting.com/game/pokemon-base-set/charizard-4
  • Console / set listingshttps://www.pricecharting.com/console/pokemon-base-set pulls every product in that set, with pagination

Input

{
"searchQueries": ["charizard base set"],
"productUrls": ["https://www.pricecharting.com/game/nintendo-64/super-mario-64"],
"listUrls": ["https://www.pricecharting.com/console/pokemon-base-set"],
"maxItems": 100,
"includePriceHistory": false
}
FieldTypeDescription
searchQueriesarrayProduct names to search
productUrlsarrayDirect product pages (always scraped first)
listUrlsarrayConsole or set pages — pulls every product listed
maxItemsintegerMaximum products to return (default 100)
includePriceHistorybooleanAlso return historical chart data (default false)
proxyConfigurationobjectApify Proxy settings (datacenter is enough)

Output

{
"url": "https://www.pricecharting.com/game/pokemon-base-set/charizard-4",
"name": "Charizard #4",
"console": "Pokemon Base Set",
"category": "trading-card",
"prices": {
"ungraded": { "label": "Ungraded", "price": 402.79 },
"grade_7": { "label": "Grade 7", "price": 800 },
"grade_8": { "label": "Grade 8", "price": 1304.5 },
"grade_9": { "label": "Grade 9", "price": 3100 },
"grade_9_5": { "label": "Grade 9.5", "price": 7304.9 },
"psa_10": { "label": "PSA 10", "price": 14406.25 }
},
"currency": "USD",
"card_number": "4",
"release_date": "1999-01-09",
"scrapedAt": "2026-09-01T04:00:00.000Z"
}

Extra attributes shown on the product page (release date, genre, publisher, card number, print run, eBay product id) are included automatically when present.

Common uses

  • Track collection value over time
  • Price your listings against the current market
  • Spot arbitrage between graded tiers (Grade 9 vs PSA 10 spreads)
  • Feed a resale or trading dashboard
  • Bulk-price an entire set or console library

Notes

  • Prices are in USD, as published by PriceCharting.
  • Only public pages are accessed; checkout and offer pages disallowed by robots.txt are never requested.
  • This Actor is not affiliated with PriceCharting.