tcgfish.net APIwww.tcgfish.net ↗
Access Pokemon TCG market indices, momentum metrics, 12-month historical data, and card price search via the TCGFish.net API. 3 endpoints, no auth setup required.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/a731060a-9db8-4865-8df8-f74fef91d989/list_indices' \ -H 'X-API-Key: $PARSE_API_KEY'
List all Pokemon TCG market indices with their current level, 7-day and 30-day performance changes. Returns data for the Graded Index (PSA 10), Sealed Index, Top 100 Most Valuable, and Top 250 Index.
No input parameters required.
{
"type": "object",
"fields": {
"indices": "array of index objects with name, slug, level, change_7d, change_30d, description"
},
"sample": {
"indices": [
{
"name": "Graded Index (PSA 10)",
"slug": "graded",
"level": 140.64,
"change_7d": "+1.96%",
"change_30d": "+4.99%",
"description": "Fixed, equal-weighted basket of the Top 250 English Pokémon cards (PSA 10). Rebalanced monthly and updated daily."
},
{
"name": "Sealed Index",
"slug": "sealed",
"level": 118.66,
"change_7d": "-0.01%",
"change_30d": "+2.52%",
"description": "Fixed, equal-weighted basket of the Top 100 Pokémon sealed products. Rebalanced monthly and updated daily."
}
]
}
}About the tcgfish.net API
The TCGFish.net API provides 3 endpoints for querying Pokemon TCG market data: index-level performance metrics for the Graded (PSA 10), Sealed, Top 100, and Top 250 indices; up to 12 months of daily historical data points per index via get_index_detail; and paginated card price search across the full TCGFish catalog. Each card result includes rarity, edition, foil type, set name, artist, and current market prices.
Market Indices
The list_indices endpoint returns all four TCGFish market indices in a single call — Graded Index (PSA 10), Sealed Index, Top 100 Most Valuable, and Top 250 Index. Each index object includes its current level, change_7d, change_30d, a human-readable description, and a slug that can be passed directly to get_index_detail. No parameters are required.
Index Detail and Historical Data
get_index_detail accepts one of four slug values (graded, sealed, top-100, top-250) and returns extended data for that index: the momentum object breaks down percentage-change performance across 7d, 30d, and 90d periods, and historical_points provides an ordered array of {date, value} objects covering approximately the last 12 months. The as_of_date field indicates when the index level was last updated.
Card Price Search
search_cards accepts a required query string (card name or keyword such as charizard or base set) and an optional page integer for pagination. Each page returns up to 20 results sorted by value. Card objects include name, number, rarity, artist, edition, foil_type, set_name, set_slug, image_url, and a prices object with current market pricing. The total field in the response indicates how many matching cards exist across all pages.
- Chart Pokemon TCG market trends by plotting
historical_pointsfromget_index_detailover the past 12 months. - Build a portfolio tracker that flags index movements using
change_7dandchange_30dfromlist_indices. - Compare sealed vs. graded market momentum using the
90dfield from both index detail responses. - Look up current market prices for a specific card by querying
search_cardswith the card name and reading thepricesfield. - Filter search results by
rarity,edition, orfoil_typeafter retrieving paginatedsearch_cardsresponses. - Monitor the Top 100 Most Valuable index level daily using the
gradedandtop-100slugs on a scheduled basis. - Identify which sets contain a keyword by aggregating
set_namevalues across paginatedsearch_cardsresults.
| 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 TCGFish have an official developer API?+
What does the `momentum` object in `get_index_detail` actually contain?+
7d, 30d, and 90d — each holding a percentage string representing how much the index level has changed over that period. It does not include raw point values for those periods, only the percentage change.How far back does the historical data in `get_index_detail` go?+
historical_points array covers approximately the last 12 months of daily index values. Data older than 12 months is not returned by this endpoint.Does the API return individual card sale history or transaction records?+
search_cards and index-level historical data via get_index_detail, but not per-card transaction history or sale logs. You can fork this API on Parse and revise it to add an endpoint targeting individual card price history if that data becomes accessible.Can I filter `search_cards` results by set, rarity, or edition before results are returned?+
search_cards endpoint accepts only a query string and a page number as inputs. Filtering by rarity, set_name, or edition is not available as a server-side parameter. You can fork this API on Parse and revise it to add those filter parameters as a separate endpoint.