Official open-source libraries and tools for the TCG Price Lookup API. Every SDK is MIT-licensed and maintained on GitHub. Authentication is the same everywhere: pass your X-API-Key (grab one from your dashboard).
Typed responses, auto-chunked batch lookup, typed errors and optional retry-on-429. Native fetch, zero dependencies, ESM + CJS. Node 18+, browsers, Workers, Bun, Deno.
npm i @tcgpricelookup/sdkPythonic client with typed models, sync and async support, and helpers for batch lookups and price history.
pip install tcglookupIdiomatic Go client with context support, typed structs, and built-in rate-limit handling.
go get github.com/TCG-Price-Lookup/tcglookup-goAsync Rust SDK built on reqwest/tokio with strongly-typed responses and ergonomic error handling.
cargo add tcglookupPSR-compatible PHP client with typed DTOs, Composer install, and Guzzle-based transport.
composer require tcgpricelookup/sdkInstall the SDK, pass your API key, and search across any of the 8 supported games. Other languages follow the same shape, see each repo's README.
import { TcgLookupClient } from "@tcgpricelookup/sdk";
const tcg = new TcgLookupClient({ apiKey: "YOUR_API_KEY" });
const { data } = await tcg.cards.search({ q: "charizard", game: "pokemon" });
console.log(data[0]?.prices);Live trading card prices in your terminal, colored tables by default, --json for jq pipes. tcglookup-cli on GitHub.
# npm
npm i -g tcglookup
# or Homebrew
brew tap TCG-Price-Lookup/tcg && brew install tcglookup
# then
tcglookup auth login
tcglookup search "charizard" --game pokemonThe full machine-readable API spec. Import it into Insomnia, generate clients, or feed it to your tooling.
Ready-to-run requests and an environment for every endpoint. Import and start testing in seconds.
Working request/response examples across JavaScript, Python, Go, Rust, PHP, Java, Ruby and cURL.
A Next.js 16 starter app wired to the API, so you can ship a card-price UI in minutes.
Drop live card prices into your Discord server. Self-host with your own API key.
Open-source, self-hostable, bring-your-own-key TCG collection tracker built on the API.
A curated index of the entire TCG Price Lookup ecosystem: API, SDKs, tools and resources.