Discover/pwccmarketplace.com API
live

pwccmarketplace.com APIwww.pwccmarketplace.com

Search and retrieve graded trading card listings from PWCC/Fanatics Collect. Get PSA grades, cert numbers, auction prices, card year, set, and more.

Endpoints
2
Updated
4h ago
Try it
Zero-based page number for pagination.
Filter by listing status. Accepts: Sold, Live. Omitted returns all statuses.
Search keywords for finding listings (e.g. 'charizard psa 10', 'michael jordan rookie').
Filter by marketplace type. Accepts: PREMIER, WEEKLY, FIXED. Omitted returns all marketplace types.
Number of results per page.
api.parse.bot/scraper/6f75fc48-78a3-4fa4-a96a-937d35bf9385/<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/6f75fc48-78a3-4fa4-a96a-937d35bf9385/search_listings' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search PWCC/Fanatics Collect marketplace listings by keywords. Returns paginated results with card details including PSA grade, certification number, prices, year, and card number. Results are sorted by relevance by default.

Input
ParamTypeDescription
pageintegerZero-based page number for pagination.
statusstringFilter by listing status. Accepts: Sold, Live. Omitted returns all statuses.
keywordsrequiredstringSearch keywords for finding listings (e.g. 'charizard psa 10', 'michael jordan rookie').
marketplacestringFilter by marketplace type. Accepts: PREMIER, WEEKLY, FIXED. Omitted returns all marketplace types.
hits_per_pageintegerNumber of results per page.
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "results": "array of listing objects with card details",
    "total_hits": "integer",
    "total_pages": "integer",
    "hits_per_page": "integer"
  },
  "sample": {
    "page": 0,
    "results": [
      {
        "year": 1996,
        "brand": "Charizard-Holo",
        "grade": 10,
        "title": "1996 Pokemon Japanese Base Set Holo Charizard NO RARITY, ARITA AUTO #6 PSA 10",
        "status": "Sold",
        "category": "Pokémon",
        "subtitle": "PSA Pop 1 of 7 - Signed On Case By Mitsuhiro Arita",
        "bid_count": 35,
        "image_url": "https://dilxwvfkfup17.cloudfront.net/...",
        "listed_at": 1648854000,
        "object_id": "PREMIER2731",
        "sold_date": 1650170476,
        "listing_id": 2731,
        "lot_number": "PA11 Lot: 31",
        "card_number": "6",
        "cert_number": "24909560",
        "marketplace": "PREMIER",
        "auction_name": "April Premier Auction",
        "listing_uuid": "232c2cb0-6f25-11ed-a516-0a58a9feac02",
        "category_parent": "Trading Card Games",
        "grading_service": "PSA",
        "current_bid_cents": 270000,
        "starting_bid_cents": 1000,
        "current_price_cents": 270000,
        "purchase_price_cents": 324000
      }
    ],
    "total_hits": 4235,
    "total_pages": 800,
    "hits_per_page": 3
  }
}

About the pwccmarketplace.com API

The PWCC Marketplace API provides 2 endpoints for searching and retrieving graded trading card listings from the Fanatics Collect (PWCC) marketplace. The search_listings endpoint returns paginated results covering card title, PSA grade, certification number, sale price, year, brand, and card number — filterable by listing status (Sold or Live) and marketplace type (PREMIER, WEEKLY, or FIXED). A second endpoint, get_listing_details, returns full per-listing data by UUID.

What the API Returns

The PWCC Marketplace API covers graded trading cards listed on the Fanatics Collect (formerly PWCC) platform. Each result from search_listings includes the card title, PSA grade, PSA certification number, year, brand/set name, card number, listing status, and pricing information. Results are paginated — the response includes page, total_hits, total_pages, and hits_per_page fields alongside the results array. The page parameter is zero-based.

Filtering and Scoping Searches

search_listings accepts a required keywords string (e.g. charizard psa 10 or michael jordan rookie) and several optional filters. status restricts results to either Sold or Live listings; omitting it returns both. marketplace narrows to one of three auction/sale formats: PREMIER, WEEKLY, or FIXED. hits_per_page controls page size. These filters let you build targeted comparisons — for example, retrieving only sold PREMIER auction results to construct a price history for a specific card and grade.

Listing Detail Endpoint

get_listing_details accepts a listing_uuid obtained from search_listings results and returns a richer object for a single listing. Fields include slug, year, brand, grade, title, status, category, subtitle, listing_id, and card_number. A full text description is included when available. This endpoint is useful for resolving details on a specific lot before or after a sale.

Coverage Scope

The API reflects listings on the PWCC/Fanatics Collect marketplace specifically. PSA-graded cards are the primary focus, consistent with the platform's inventory. Data freshness depends on listing activity on the platform; sold listings remain queryable via the status=Sold filter, making historical price lookups viable within the available listing archive.

Common use cases
  • Build a PSA 10 price tracker for specific Pokémon cards using status=Sold results over time
  • Compare hammer prices across PREMIER vs WEEKLY auction formats for the same card and grade
  • Verify PSA certification numbers for cards before purchase using the get_listing_details cert field
  • Aggregate recent sold prices for a player's rookie cards to estimate current market value
  • Alert collectors when a specific card (by keyword and grade) goes Live on the marketplace
  • Research year and set distribution for graded copies of a card currently available as FIXED listings
  • Pull listing metadata (title, subtitle, brand, card_number) to populate a collection management tool
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 PWCC/Fanatics Collect have an official developer API?+
Fanatics Collect does not publish a documented public developer API for marketplace listing data. This Parse API provides structured access to that listing data.
What does the `status` filter in `search_listings` actually distinguish?+
status=Live returns listings currently active on the marketplace, while status=Sold returns completed transactions with final sale prices. Omitting the parameter returns both. This distinction is key for separating asking prices from realized prices when doing valuation work.
Does the API cover BGS (Beckett), SGC, or other grading companies, or only PSA?+
The API reflects listings on the PWCC/Fanatics Collect marketplace, which hosts cards graded by multiple services including BGS and SGC alongside PSA. The structured response fields (grade, certification number) are present where the listing includes them, but coverage depends on what is listed. You can fork this API on Parse and revise it to add explicit grading-company filters if needed.
Is there a way to retrieve seller profiles or bidding history for a listing?+
Not currently. The API covers listing-level data: card details, grades, prices, and status. Seller profiles and bid-by-bid auction history are not included in the response fields. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes a requirement.
How does pagination work in `search_listings`?+
Pagination is zero-based via the page parameter. The response includes total_hits, total_pages, and hits_per_page so you can calculate how many requests are needed to walk through a full result set. hits_per_page can be set explicitly per request.
Page content last updated . Spec covers 2 endpoints from www.pwccmarketplace.com.
Related APIs in MarketplaceSee all →
ebay.com API
Search and monitor eBay listings across any category, with support for active and completed/sold listings. Retrieve item details, pricing history, seller profiles and feedback, and category data. Filter by keyword, category, condition, seller, and sort order to support price research, market analysis, and inventory monitoring.
store.epicgames.com API
store.epicgames.com API
psacard.com API
Look up PSA certification details for graded collectible cards and search comprehensive population reports and price guides across all card categories. Browse collectible categories by set to discover grading data, pricing information, and population statistics.
craigslist.org API
Search and retrieve Craigslist listings for apartments, vehicles, jobs, services, and other categories across all regional sites to find exactly what you're looking for. Get detailed information about specific listings, browse by location and category, and compare options all in one place.
jp.mercari.com API
Search and browse millions of product listings on Mercari Japan with bilingual support, filtering by categories and getting detailed pricing, item specifications, and seller information. Access comprehensive marketplace data including product summaries, category overviews, and individual seller profiles to find exactly what you're looking for.
mercadolibre.com.ar API
Search for products, cars, and real estate listings on MercadoLibre Argentina and access detailed information including product specifications, customer reviews, and seller profiles. Get comprehensive market data to compare prices, evaluate sellers, and make informed purchasing decisions across multiple categories.
arrow.com API
Search for electronic components and instantly access pricing, availability, and detailed product specifications from Arrow Electronics' catalog. Look up manufacturers, retrieve bulk component data, and find the parts you need all in one place.
auctions.yahoo.co.jp API
Search active and completed Yahoo Auctions Japan listings, view detailed item information, and identify bargain deals by comparing current prices against market trends. Analyze seller profiles to make informed bidding decisions on Japanese auction items.