TICKERMINT
DEVELOPERS

API · MCP · EMBEDS

Everything on this site is behind a read-only JSON API at https://api.tickermint.cards, an MCP server at https://api.tickermint.cards/mcp, and embeddable price cards. Free with a link back. Daily TCGplayer market prices on 45,000 Pokemon, One Piece, Lorcana, Riftbound and Gundam products, history since 2024.

REST API · READ ONLY · JSON

ENDPOINTRETURNS
GET /products/search?q=charizard%20ex%20199/165&game=pokemonfind cards and sealed products; returns product_id, set, number, latest market
GET /products/{product_id}one product's identity: name, set, collector number, rarity, image
GET /products/{product_id}/pricesdaily market price per printing since February 2024
GET /products/{product_id}/sales?passive=1recent completed TCGplayer sales by condition (when tracked)
GET /sets/{group_id}every card in a set with today's price and the set's total value
GET /desk/top?game=pokemon&limit=100most valuable cards, highest PSA 10 floors, deepest eBay books
GET /desk/movers?game=pokemon&days=7&min_market=5biggest gainers and losers over 1 to 90 days
GET /desk/highs?game=pokemoncards at a new all-time high this week
GET /desk/lows?game=pokemoncards at their all-time low after a real fall
GET /desk/sealed?game=pokemonbooster boxes, ETBs, bundles, packs and tins by kind

Try it: https://api.tickermint.cards/products/search?q=umbreon vmax 215. Full OpenAPI at https://api.tickermint.cards/openapi.json. Games: pokemon, one-piece, lorcana, riftbound, gundam.

MCP SERVER · FOR ASSISTANTS

Streamable HTTP, no auth: https://api.tickermint.cards/mcp. In Claude, ChatGPT (connectors), Cursor or any MCP client, add it as a remote server. Every tool returns the card page URL so answers can cite it.

{
  "mcpServers": {
    "tickermint": { "url": "https://api.tickermint.cards/mcp" }
  }
}

Listed in the official MCP Registry (io.github.seankarltonlee/tickermint), Smithery and Glama. Server card: https://api.tickermint.cards/.well-known/mcp/server-card.json.

EMBEDS · LIVE PRICE CARD AND BADGE

Every card page has an EMBED button. The iframe is a 320 by 120 price card with a 90-day sparkline; the badge is an SVG for signatures and READMEs. Both link back.

<iframe src="https://tickermint.cards/embed/card/246723" width="320" height="120" style="border:0" loading="lazy"></iframe>
<a href="https://tickermint.cards/card/246723"><img src="https://tickermint.cards/badge/card/246723/price.svg" alt="Umbreon VMAX price"></a>

Umbreon VMAX price badge

TERMS

  • Free for personal projects, research, bots, and tools that show the data to their own users.
  • Attribution: a visible link to the TickerMint page the data came from (the API returns it).
  • No reselling the raw prices as a feed and no competing price API built on it.
  • Rate limits apply per IP; cache on your side. Abuse gets blocked without notice.
  • Prices are TCGplayer market data; TickerMint is not affiliated with TCGplayer, eBay, or any publisher. See legal and methodology.

FAQ

Is the TickerMint API free?

+

Yes, for personal projects, research, bots and tools that show the data to their own users, with a visible link back to the TickerMint page the data came from. No key is needed. Reselling the raw prices as a feed, or standing up a competing price API on top of it, is not allowed. Commercial use beyond that: email [email protected].

What are the rate limits?

+

120 requests a minute per IP on read endpoints, lower on search, scanning and login. Public reads are cached at the edge for an hour, so polling faster than that returns the same numbers. If you need more, cache on your side or ask.

Where do the prices come from?

+

TCGplayer market prices captured nightly, with sold comps by condition, live eBay asking floors for graded copies, and a published methodology. History runs from February 2024 (or a set's release). Yu-Gi-Oh is being ingested and will appear once it has history.

How do I use it from ChatGPT, Claude or another assistant?

+

Add https://api.tickermint.cards/mcp as an MCP server. It exposes search_cards, card_price, price_history, most_valuable, movers, all_time_highs, all_time_lows, sealed_prices and set_prices, plus the search/fetch pair ChatGPT connectors expect. No authentication.