Supported Games
TCGFast एक unified API है जो प्रमुख ट्रेडिंग कार्ड गेम्स के card price data देती है। एक API key से Pokémon, Magic: The Gathering, Yu-Gi-Oh! और 8 games के real-time market prices, condition prices, graded card data, price history और set information मिलती है। हर game के लिए अलग setup या credentials की जरूरत नहीं।
चाहे collector tracker, Discord price bot, store inventory system या arbitrage tool बना रहे हों,
same endpoint structure हर supported game के लिए काम करती है।
बस game parameter बदलें।
300,000+
Indexed Cards
8
Supported Games
2
Price Sources
Real-time
Price Updates
Game के अनुसार देखें
Flesh and Blood
8,000+ cards
Access real-time pricing for over 8,000 Flesh and Blood cards. Complete coverage with per-condition pricing and graded values.
Flesh and Blood API देखें →
Disney Lorcana
3,000+ cards
Access real-time pricing for over 3,000 Disney Lorcana cards. Full coverage since launch with per-condition pricing and graded values.
Disney Lorcana API देखें →
Magic: The Gathering
100,000+ cards
Access real-time pricing for over 100,000 Magic: The Gathering cards. Complete coverage of all sets from Alpha to the latest release. Per-condition and graded pricing.
Magic: The Gathering API देखें →
One Piece
6,000+ cards
Access real-time pricing for over 6,000 One Piece TCG cards. Complete set coverage with per-condition pricing and graded values.
One Piece API देखें →
Pokemon
30,000+ cards
Access real-time pricing for over 30,000 Pokemon TCG cards. Search by name, set, or card number. Get per-condition pricing from Near Mint to Damaged, plus PSA, BGS, and CGC graded values.
Pokemon API देखें →
Pokemon Japan
20,000+ cards
Access real-time pricing for over 20,000 Japanese Pokemon TCG cards. Covers Japanese-exclusive sets, promos, and special releases.
Pokemon Japan API देखें →
Star Wars: Unlimited
2,500+ cards
Access real-time pricing for over 2,500 Star Wars: Unlimited cards. Full coverage with per-condition pricing and graded values.
Star Wars: Unlimited API देखें →
Yu-Gi-Oh!
40,000+ cards
Access real-time pricing for over 40,000 Yu-Gi-Oh! cards. Coverage spans all sets and rarities with per-condition and graded card values.
Yu-Gi-Oh! API देखें →
उपयोग कैसे करें
एक API key। एक endpoint structure। सभी games के लिए।
01
फ्री API Key लें
Dashboard पर sign up करें और तुरंत key पाएं। फ्री plan में 200 requests/दिन शामिल हैं — किसी भी integration develop और test करने के लिए पर्याप्त।
02
Game चुनें
Request में game parameter set करें।
pokemon, mtg,
yugioh आदि। Same request structure सभी games के लिए।
03
Card Prices प्राप्त करें
Card name से search करें, set के अनुसार browse करें, या specific card number से खोजें। Market prices, condition prices और graded data एक response में।
सभी Games में उपलब्ध Data
हर supported game के लिए same rich data fields उपलब्ध हैं।
Market Prices
TCGPlayer listings और recent eBay sold data से aggregate real-time market prices। Continuously updated।
Condition Prices
Near Mint, Lightly Played, Moderately Played, Heavily Played, Damaged के अनुसार prices। हर condition का exact value जानें।
Graded Card Prices
Eligible cards के लिए PSA grades 1-10, BGS और CGC graded prices। Trader plan ($14.99/माह) या उससे ऊपर की आवश्यकता।
Price History और Trends
Card value movement दिखाने वाला 90-day historical data। Trader plan ($14.99/माह) जरूरी।
Set Browsing
किसी भी game के सभी sets list करें और किसी भी set का complete card list पाएं।
Batch Search
एक request में 20 cards तक batch करें। Deck lists या entire binders को efficiently price करने के लिए ideal।
Cross-game Search का उदाहरण
Same code pattern सभी games के लिए काम करता है। बस game की value बदलें।
import { TcgLookupClient } from '@tcgpricelookup/sdk';
const tcg = new TcgLookupClient({ apiKey: process.env.TCG_API_KEY });
// Same syntax से अलग games search करें
const pokemon = await tcg.cards.search({ name: 'charizard', game: 'pokemon' });
const mtg = await tcg.cards.search({ name: 'black lotus', game: 'mtg' });
const yugioh = await tcg.cards.search({ name: 'blue-eyes', game: 'yugioh' });
const lorcana = await tcg.cards.search({ name: 'elsa', game: 'lorcana' });
const onepiece = await tcg.cards.search({ name: 'luffy', game: 'onepiece' });
// सभी responses same format में:
// { data: [...], total: 12, limit: 20, offset: 0 }
console.log(pokemon.data[0].prices.nearMint.market);
console.log(mtg.data[0].prices.nearMint.market); अक्सर पूछे जाने वाले प्रश्न
क्या हर game के लिए अलग API key चाहिए?
नहीं। एक API key सभी 8 supported games के लिए काम करती है। बस request के
game parameter से switch करें।
कोई extra sign-up या credentials जरूरी नहीं।
Prices कितनी बार update होती हैं?
Prices TCGPlayer और eBay sold data से continuously update होती हैं। कोई fixed update schedule नहीं — नई market activity होने पर data update होता है।
Graded card prices के लिए कौन सा plan चाहिए?
Graded card prices (PSA, BGS, CGC) और price history data के लिए Trader plan ($14.99/माह) या उससे ऊपर की आवश्यकता है। Free plan और सभी paid plans में सभी 8 games के market prices और condition prices का full access शामिल है।
क्या नए games जोड़े जाएंगे?
हां। जैसे-जैसे secondary markets mature होते हैं और reliable price data उपलब्ध होता है, नए games जोड़े जाते हैं। Existing API keys नए supported games के लिए automatically बिना extra charge के access पाती हैं।
सभी 8 games के साथ prices fetch करना शुरू करें
फ्री plan में 200 requests/दिन। Credit card की जरूरत नहीं। Graded prices और price history के लिए Trader plan ($14.99/माह) पर upgrade करें।