</>TCG Price Lookup
CatalogAPIPricingFAQDocsBlog
CatalogAPIPricingFAQDocsBlog
</>TCG Price Lookup

Free trading card game price checker. Live prices from TCGPlayer and eBay for Pokemon, Pokemon Japan, Magic: The Gathering, Yu-Gi-Oh!, One Piece, Disney Lorcana, Star Wars: Unlimited, and Flesh and Blood.

[email protected]

Product

  • Card Price Checker
  • Price Guide
  • API for Developers
  • Pricing

Games

  • Pokemon
  • Pokemon Japan
  • Magic: The Gathering
  • Yu-Gi-Oh!
  • One Piece
  • Disney Lorcana
  • Star Wars: Unlimited
  • Flesh and Blood

Resources

  • Blog
  • FAQ
  • Documentation

Legal

  • Privacy Policy
  • Terms of Service

© 2026 TCG Price Lookup. All rights reserved.

TCG Price Lookup is not affiliated with or endorsed by TCGPlayer, eBay, or any trading card game publisher.

All trading card game names, logos, and card imagery are trademarks and © of their respective owners. Pokemon is © Nintendo / Creatures Inc. / GAME FREAK Inc. Magic: The Gathering is © Wizards of the Coast LLC. Yu-Gi-Oh! is © Konami Digital Entertainment. One Piece Card Game is © Bandai / Shueisha / Toei Animation. Disney Lorcana is © Disney / Ravensburger. TCG Price Lookup is an independent card price tracking service and is not affiliated with, endorsed by, or sponsored by any of the above companies, PSA, BGS, CGC, or any grading service. All card names and imagery are used solely for identification and price tracking purposes.

Getting Started

Everything you need to start using the TCG Price Lookup API.

Base URL

https://api.tcgpricelookup.com/v1
1

Get your API key

Create a free account to get your API key. No credit card required.

2

Add the X-API-Key header

Include your API key in the X-API-Key header of every request.

3

Make your first request

curl "https://api.tcgpricelookup.com/v1/cards/search?q=charizard&game=pokemon" \
  -H "X-API-Key: YOUR_API_KEY"

Response Format

All list endpoints return a consistent envelope with a data array and pagination fields. Use limit and offset query parameters to paginate through results.

{
  "data": [
    {
      "id": "019535a1-d5d0-7c12-a3e8-b7f4c6d8e9a2",
      "name": "Charizard ex",
      "game": "pokemon",
      "set_name": "Obsidian Flames",
      "rarity": "Double Rare",
      "prices": {
        "raw": {
          "near_mint": {
            "tcgplayer": { "market": 48.97 },
            "ebay": { "avg_7d": 50.75 }
          }
        }
      }
    }
  ],
  "total": 47,
  "limit": 20,
  "offset": 0
}

What's Next

Authentication

API key setup & security

API Reference

Interactive endpoint docs

Rate Limits

Limits, headers & errors

LLM Integration

Grounded retrieval patterns for AI assistants

Realtime Patterns

Polling, backoff, and update stream architecture