Discover/pricecharting.com API
live

pricecharting.com APIpricecharting.com

Access Pokémon card and US coin prices, grade-based valuations, sold listings, price history, and market movers from PriceCharting.com via a structured API.

Endpoints
12
Updated
3mo ago
Try it
Search keyword (e.g. 'charizard', 'pikachu base set')
api.parse.bot/scraper/bbbbdc36-6d99-4a7a-8115-cf766b2497e3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/bbbbdc36-6d99-4a7a-8115-cf766b2497e3/search_pokemon_cards?query=charizard' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 12 totalclick to expand

Search for Pokemon cards by name. Returns a list of matching cards with their current prices across different grades.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g. 'charizard', 'pikachu base set')
Response
{
  "type": "object",
  "fields": {
    "cards": "array of card objects with name, url, set, set_slug, card_slug, and prices",
    "count": "integer total number of matching cards"
  },
  "sample": {
    "data": {
      "cards": [
        {
          "set": "Pokemon Scarlet & Violet 151",
          "url": "https://www.pricecharting.com/game/pokemon-scarlet-&-violet-151/charizard-ex-199",
          "name": "Charizard ex #199",
          "prices": {
            "psa_10": 365.88,
            "grade_9": 296.39,
            "ungraded": 413.45
          },
          "set_slug": "pokemon-scarlet-&-violet-151",
          "card_slug": "charizard-ex-199"
        }
      ],
      "count": 100
    },
    "status": "success"
  }
}

About the pricecharting.com API

This API exposes 12 endpoints covering PriceCharting.com's collectible pricing data for Pokémon TCG cards and US coins. Use get_card_detail to retrieve prices across up to 12 grade levels — from ungraded through PSA 10, BGS 10, and CGC 10 — for any individual card, or use get_card_price_history to pull time-series price data with millisecond timestamps. Coin collectors can query grades like VF, AU, MS62, MS64, and MS66 with equivalent depth.

Pokémon Card Endpoints

The search_pokemon_cards endpoint accepts a keyword query (e.g. 'charizard base set') and returns a list of matching cards with name, set, set_slug, card_slug, and current prices per grade. Those slugs feed directly into get_card_detail, which returns a full price object keyed by grade label (e.g. ungraded, psa-9, psa-10, bgs-10, cgc-10) alongside metadata fields like release_date, publisher, and card_number. To browse an entire set, get_pokemon_card_set takes a set_slug and returns every card in that set with prices for ungraded, grade 9, and PSA 10 conditions, plus a set_name and optional index statistics object. list_pokemon_card_sets returns all available set slugs and URLs without any input parameters.

Sold Listings and Price History

get_card_sold_listings returns recent eBay-sourced sold prices for a specific card, grouped into arrays by condition: used, cib, new, graded, and others. Each entry includes a date, title, and price. get_card_price_history returns the same card's price as time-series data — arrays of [timestamp_ms, price_dollars] pairs keyed by condition (cib, new, used, graded, boxonly, manualonly). These two endpoints share the same set_slug and card_slug inputs as get_card_detail.

US Coin Endpoints

Coin coverage mirrors the card structure. list_coin_sets lists all available US coin sets with their slugs (e.g. coins-morgan-dollar, coins-lincoln-wheat-penny). get_coin_set takes a set_slug and returns every coin in that set with prices at ungraded, MS62, and MS66. search_coins filters results to coin items only and returns set_slug and coin_slug values that feed into get_coin_detail, which provides grades including vf, au, ms62, ms64, and ms66 alongside mintage and other metadata.

Market-Level Endpoints

get_big_movers returns items across all categories — games, cards, and coins — sorted by absolute price change, with fields for name, url, console, price, and change. get_trending_cards returns trending Pokémon sets grouped by section values such as most_popular and new_releases.

Common use cases
  • Track real-time PSA 10 price trends for specific Pokémon cards using get_card_price_history time-series data.
  • Build a portfolio tracker for graded coins by querying get_coin_detail for MS62, MS64, and MS66 valuations.
  • Monitor market-wide price swings across games, cards, and coins with get_big_movers.
  • Automate eBay sold-listing analysis for a specific card by condition using get_card_sold_listings.
  • Populate a set-browser app with complete card lists and ungraded prices via get_pokemon_card_set.
  • Identify emerging collector interest by polling get_trending_cards for the new_releases and most_popular sections.
  • Cross-reference coin mintage data from get_coin_detail metadata against current MS66 pricing for rarity analysis.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does PriceCharting.com have an official developer API?+
Yes. PriceCharting offers an official API documented at https://www.pricecharting.com/api-documentation. It covers product lookups by ID or UPC and returns current prices, but it does not expose set browsing, price history time-series, sold listings, or trending/mover data in the same form this API does.
What grade labels does `get_card_detail` return, and are all of them always populated?+
get_card_detail returns a prices object with labels such as ungraded, psa-9, psa-10, bgs-10, bgs-9.5, cgc-10, and others. Not every grade will have a value for every card — grades with insufficient sales data may return null or be absent from the object entirely.
Does the API cover video game pricing from PriceCharting?+
Not currently. The API covers Pokémon TCG cards and US coins. get_big_movers does surface game items in its cross-category response, but there are no dedicated search, detail, or history endpoints for video games. You can fork this API on Parse and revise it to add game-specific endpoints.
Does `get_card_price_history` support filtering by date range?+
No date range parameters are available on get_card_price_history. It returns all available historical data for the card as [timestamp_ms, price_dollars] pairs per condition, and any date filtering would need to be applied client-side after receiving the full response.
Are non-US coins (e.g. Canadian, British) covered by the coin endpoints?+
Not currently. list_coin_sets, get_coin_set, search_coins, and get_coin_detail are scoped to US coin series like Morgan dollars, Lincoln wheat pennies, and Mercury dimes. You can fork this API on Parse and revise it to add endpoints targeting non-US coin categories.
Page content last updated . Spec covers 12 endpoints from pricecharting.com.
Related APIs in MarketplaceSee all →
mouser.com API
mouser.com API
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.