Discover/TCGFish API
live

TCGFish APItcgfish.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.

This API takes change requests — .
Endpoint health
verified 7d ago
search_cards
list_indices
get_index_detail
3/3 passing latest checkself-healing
Endpoints
3
Updated
14d ago

What is the TCGFish 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.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/a731060a-9db8-4865-8df8-f74fef91d989/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a731060a-9db8-4865-8df8-f74fef91d989/list_indices' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

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. Always returns all four indices in a single response with no pagination.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "indices": "array of IndexSummary objects with name, slug, level, change_7d, change_30d, description"
  },
  "sample": {
    "data": {
      "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."
        },
        {
          "name": "Top 100 Most Valuable",
          "slug": "top-100",
          "level": 116.2,
          "change_7d": "+1.85%",
          "change_30d": "+3.68%",
          "description": "Fixed, equal-weighted basket of the Top 100 English Pokémon cards. Rebalanced monthly and updated daily."
        },
        {
          "name": "Top 250 Index",
          "slug": "top-250",
          "level": 116.83,
          "change_7d": "+1.80%",
          "change_30d": "+3.95%",
          "description": "Fixed, equal-weighted basket of the Top 250 English Pokémon cards. Rebalanced monthly and updated daily."
        }
      ]
    },
    "status": "success"
  }
}

About the TCGFish API

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.

Reliability & maintenanceVerified

The TCGFish API is a managed, monitored endpoint for tcgfish.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tcgfish.net changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official tcgfish.net API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Chart Pokemon TCG market trends by plotting historical_points from get_index_detail over the past 12 months.
  • Build a portfolio tracker that flags index movements using change_7d and change_30d from list_indices.
  • Compare sealed vs. graded market momentum using the 90d field from both index detail responses.
  • Look up current market prices for a specific card by querying search_cards with the card name and reading the prices field.
  • Filter search results by rarity, edition, or foil_type after retrieving paginated search_cards responses.
  • Monitor the Top 100 Most Valuable index level daily using the graded and top-100 slugs on a scheduled basis.
  • Identify which sets contain a keyword by aggregating set_name values across paginated search_cards results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does TCGFish have an official developer API?+
TCGFish does not publish an official public developer API or documented API program as of mid-2025.
What does the `momentum` object in `get_index_detail` actually contain?+
It contains three keys — 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?+
The 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?+
Not currently. The API covers current market prices per card via 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?+
The 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.
Page content last updated . Spec covers 3 endpoints from tcgfish.net.
Related APIs in FinanceSee all →
tcgplayer.com API
Search for trading cards across all games and sets on TCGPlayer, and instantly access detailed pricing information by condition plus current seller listings with prices, shipping costs, and seller ratings. Compare card values and find the best deals from multiple sellers all in one place.
pricecharting.com API
Access collectible pricing data from PriceCharting.com. Search for Pokémon cards, US coins, and other collectibles to retrieve current prices across multiple grades (ungraded, PSA 9, PSA 10, MS62, MS66, and more), browse full set listings, view historical price trends, and explore recent sold listings.
pokemontcg.io API
Search and retrieve detailed information about Pokémon Trading Card Game cards, including card stats, types, attacks, abilities, rarity, set information, images, and pricing data.
pokemontcg.com API
Search and browse detailed information about Pokémon Trading Card Game cards and sets, including card types, rarities, and supertypes. Filter cards by set, rarity, and attributes to find exactly what you're looking for in the TCG database.
sportscardinvestor.com API
Access data from sportscardinvestor.com.
pkmncards.com API
Search and browse Pokémon trading card game cards with detailed metadata, high-quality images, and advanced filtering by set, Pokémon name, or card type. Filter across thousands of cards from different sets to find exactly what you're looking for.
sportscardspro.com API
Access data from sportscardspro.com.
tcdb.com API
Browse and retrieve detailed trading card information from the Trading Card Database (TCDB), including set listings, checklists, parallel variants, and special notations such as rookie cards, short prints, and variations. Search across sports and years to access comprehensive card and set metadata.