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.
curl -X GET 'https://api.parse.bot/scraper/6f75fc48-78a3-4fa4-a96a-937d35bf9385/search_listings' \ -H 'X-API-Key: $PARSE_API_KEY'
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.
| Param | Type | Description |
|---|---|---|
| page | integer | Zero-based page number for pagination. |
| status | string | Filter by listing status. Accepts: Sold, Live. Omitted returns all statuses. |
| keywordsrequired | string | Search keywords for finding listings (e.g. 'charizard psa 10', 'michael jordan rookie'). |
| marketplace | string | Filter by marketplace type. Accepts: PREMIER, WEEKLY, FIXED. Omitted returns all marketplace types. |
| hits_per_page | integer | Number of results per page. |
{
"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.
- Build a PSA 10 price tracker for specific Pokémon cards using
status=Soldresults 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_detailscert 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does PWCC/Fanatics Collect have an official developer API?+
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?+
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?+
How does pagination work in `search_listings`?+
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.