An open source repo for data on the Pokemon TCG Pocket cards. Useful for building Pokemon TCG Pocket tools such as websites. Feel free to use the data however you like.
It might be best to use it as an API like:
- Cards data:
https://raw.githubusercontent.com/chase-manning/pokemon-tcg-pocket-cards/refs/heads/main/v4.json - Expansions and packs data:
https://raw.githubusercontent.com/chase-manning/pokemon-tcg-pocket-cards/refs/heads/main/expansions.json
So that whenever there are changes and additions you can get them right away.
If there's anything missing or wrong, feel free to raise a PR.
Card data is scraped from Limitless TCG.
When a new expansion is released, run a single command to scrape all card data, download images, and update the database:
pip install -r requirements.txt
python3 scripts/add_expansion.py <SET_CODE>For example:
python3 scripts/add_expansion.py B2bThe script will automatically:
- Detect the expansion name from Limitless TCG
- Scrape all cards in the set
- Download card and pack images
- Append new cards to
v4.json - Add the expansion to
expansions.json
Promo sets (P-A, P-B) add cards over time rather than all at once. Run the same command to pick up any new cards:
python3 scripts/add_expansion.py PA
python3 scripts/add_expansion.py PBThe script will scrape all cards in the promo set and only add ones not already in the database.
--name "Custom Name"to override the auto-detected expansion name--skip-imagesto skip downloading images
- Pocket Decks Top A website showing a tier list of the best Pokemon TCG Pocket Decks based on tournament results, updated weekly every Monday
- Pocket Card Collection A collection tracker that lets you save your cards across devices using Google Sign-in, showing your progress towards completing each pack's collection
- PTCGP Pack Opener A website for simulating opening Pokemon TCG Pocket Packs
- All Your Poke Cards A site for showing info on all your Poke Cards
- Pokemon Pocket Card Data A notebook to help decide which pack to open based on the cards you want to pull
- Pokemon TCG Pocket Trade Dex A website to facilitate visualization and comparison of cards among players.
If you've built something using this API, feel free to submit a PR to add it to this list!