Pokémon TCG API

दुनिया का सबसे बड़ा ट्रेडिंग कार्ड गेम — पूरी तरह indexed

20,000+ Cards 180+ Sets Continuously Updated

Pokémon TCG market cap के हिसाब से सबसे बड़ा ट्रेडिंग कार्ड गेम है। 1998 में English debut के बाद से इसकी global sales $15 billion से ज्यादा का अनुमान है। Market तीन buyer segments से चलती है: nostalgia collectors, competitive players और alternative asset investors।

1999 के Base Set vintage cards (Charizard, Blastoise, Venusaur) सबसे ऊंचे anchors हैं। Shadowless PSA 10 Charizard $6,000-$15,000 में trade होता है। Scarlet & Violet era में Illustration Rares और Special Art Rares आए हैं। Japan-exclusive promos और Charizard-ex SAR (Obsidian Flames) की prices तेज़ी से बढ़ती हैं।

Pokémon के लिए API Data

TCGPlayer + eBay Market Prices

TCGPlayer active listings और recent eBay sold data से aggregate। दोनों sources continuously update होते हैं।

Condition Prices

Near Mint, Lightly Played, Moderately Played, Heavily Played, Damaged के अनुसार prices। Grading submission या buylist decisions के लिए जरूरी।

PSA / BGS / CGC Graded Prices

PSA 10 Charizard या BGS 9.5 Eevees की actual trade prices track करें। Graded data के लिए Trader plan ($14.99/माह) जरूरी।

90-दिन Price History

Time-series price data से peak से पहले trends identify करें। Trader plan जरूरी।

Rarity और Variant Support

Illustration Rares, Special Art Rares, Rainbow Rares, Gold cards, regional variants को individual IDs और prices के साथ track करें।

Set Browsing

180+ Pokémon sets list करें और किसी भी set का complete card list पाएं।

Code Examples

Pokémon Cards Search करें

import { TcgLookupClient } from '@tcgpricelookup/sdk';
const tcg = new TcgLookupClient({ apiKey: 'YOUR_KEY' });

// Charizard cards search करें
const results = await tcg.cards.search({
  name: 'Charizard',
  game: 'pokemon',
});

console.log(results.data[0].name);      // "Charizard ex"
console.log(results.data[0].rarity);    // "Special Illustration Rare"
console.log(results.data[0].prices.nearMint.market); // जैसे: 285.00

PSA Graded Prices प्राप्त करें

// Graded Pokémon card prices (Trader plan जरूरी)
const graded = await tcg.cards.graded('base1-4', { game: 'pokemon' });

console.log(graded.data.psa[10].market);   // PSA 10 market price
console.log(graded.data.psa[9].market);    // PSA 9 market price
console.log(graded.data.bgs['9.5'].market); // BGS 9.5 market price

अक्सर पूछे जाने वाले प्रश्न

क्या Japanese Pokémon cards support होते हैं?
हां। Japanese Pokémon cards API में game slug pokemonjp के रूप में एक separate game हैं। Eevee Heroes और VSTAR Universe जैसे Japan-exclusive sets भी शामिल हैं। Japanese cards English से months पहले release होते हैं।
क्या API से PSA graded Pokémon card prices मिलती हैं?
हां, eligible Pokémon cards के लिए PSA (grades 1-10), BGS, CGC graded prices उपलब्ध हैं। Trader plan ($14.99/माह) जरूरी है।
नए Pokémon sets कितनी जल्दी add होते हैं?
English Pokémon sets release के कुछ दिनों में indexed होते हैं। Japanese sets Japan release के समय add होते हैं।

Pokémon TCG API शुरू करें

  1. 1

    फ्री API Key लें

    tcgpricelookup.com/dashboard पर sign up करें। Credit card की जरूरत नहीं, 200 requests/दिन फ्री।

  2. 2

    Integration Method चुनें

    JavaScript, Python या PHP SDK use करें या REST API directly call करें।

  3. 3

    पहला Pokémon Card Search करें

    game: 'pokemon' के साथ कोई भी card name try करें। Response में NM market price, condition prices, rarity और set info शामिल होगी।

Pokémon Card Price Data के साथ development शुरू करें

फ्री API key लें और अभी Pokémon card prices fetch करना शुरू करें। 200 requests/दिन फ्री, credit card की जरूरत नहीं।