pkmnprices
Python client for the Pkmn Prices API. Pokemon TCG card pricing from TCGPlayer, Cardmarket, and eBay.
Sync and async clients, both built on httpx. Typed responses, typed errors, and iterators that page through results for you. Python 3.10+.
Install
pip install pkmnprices
Usage
from pkmnprices import PkmnPrices
client = PkmnPrices("pk_your_key_here")
page = client.cards.list(name="charizard", per_page=10)
card = client.cards.get(page.data[0].id)
for price in card.prices:
symbol = "€" if price.currency == "EUR" else "$"
print(f"{price.source}: {symbol}{price.market_price}")
client.close()
The client is also a context manager:
with PkmnPrices("pk_...") as client:
health = client.health()
Async
import asyncio
from pkmnprices import AsyncPkmnPrices
async def main():
async with AsyncPkmnPrices("pk_...") as client:
page = await client.cards.list(name="charizard")
async for card in client.cards.iterate(name="charizard"):
print(card.name)
asyncio.run(main())
Get an API key from https://pkmnprices.com/dashboard.
Options
PkmnPrices(
"pk_...", # API key, sent as the x-api-key header
max_retries=2, # retries on 429 rate limits and 5xx/network errors
timeout=30.0, # per-request timeout in seconds
)
Rate-limit 429s are retried with backoff. Credit-limit 429s (credit_limit_exceeded) are not, since they don't reset until the next day.
Pagination
List endpoints return a Page (.data, .pagination). Listing endpoints (eBay, Cardmarket, and TCGplayer) return a CursorPage. Both resources expose iterators so you don't track pages or cursors:
for card in client.cards.iterate(name="charizard"):
print(card.name)
all_sets = client.sets.list_all(language="english")
for sale in client.cards.listings.iterate_ebay(789, graded=True, grader="PSA", grade="10"):
print(sale.title, sale.price)
for offer in client.cards.listings.iterate_cardmarket(789, condition="Near Mint", variant="Reverse Holo"):
print(offer.seller, offer.price, offer.language)
for offer in client.cards.listings.iterate_tcgplayer(789, condition="Near Mint"):
print(offer.seller_name, offer.price, offer.shipping_price)
Sealed products carry the same two listing sources, under client.sealed.listings:
for offer in client.sealed.listings.iterate_tcgplayer(5678):
print(offer.seller_name, offer.price, offer.quantity)
for sale in client.sealed.listings.iterate_ebay(5678, sort="price_desc"):
print(sale.title, sale.price, sale.sold_at)
Sealed TCGplayer offers are normally condition "Unopened" with an empty
printing, so those two filters rarely narrow anything. Sealed eBay sales are
never graded, so graded, grader, and grade aren't accepted there and
grader/grade come back None. The async client mirrors all of these on
AsyncPkmnPrices.
Currency
Every price has a currency field. Pass currency="usd" or currency="eur" to filter, or leave it off to get everything your plan allows. EUR (Cardmarket) prices need a Pro plan; a free key asking for eur raises ForbiddenError.
card = client.cards.get(789, currency="usd")
box = client.sealed.get(5678, currency="eur")
Cardmarket current prices are condition- and printing-specific marketplace
prices. Each EUR row has one market_price for its exact condition and
variant; for example, a Near Mint Reverse Holofoil price is distinct from a
Mint or Normal price. The retired Price Guide low, trend, and avg fields
are not returned. Live Cardmarket listings are automatically restricted to the
card's language.
Cardmarket Mapping
Card and sealed detail responses expose Cardmarket's stable product identifiers when a mapping is available:
card = client.cards.get(789)
print(card.cardmarket_url)
print(card.cardmarket_product_id)
box = client.sealed.get(5678)
print(box.cardmarket_url)
print(box.cardmarket_product_id)
Both fields are None until the product has been mapped.
Errors
Everything raised subclasses PkmnPricesError, which carries status, code, rate_limit, and retry_after.
from pkmnprices import ForbiddenError, NotFoundError, RateLimitError
try:
client.cards.get(789, currency="eur")
except ForbiddenError:
... # needs a higher plan
except NotFoundError:
... # no such card
except RateLimitError:
... # ran out of retries
Subclasses: BadRequestError (400), UnauthorizedError (401), ForbiddenError (403), NotFoundError (404), ConflictError (409), CreditLimitError and RateLimitError (429), InternalServerError (5xx), APIConnectionError (network/timeout).
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pkmnprices-3.1.0.tar.gz.
File metadata
- Download URL: pkmnprices-3.1.0.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a416690dfe50980040895ef2c479bde4ff6714ba810b20b3e692581076d9687
|
|
| MD5 |
d05d9134161b15aa0c0e31015ae720ea
|
|
| BLAKE2b-256 |
5d709b9eaa1b6ae2c7e7e385c6f6391dd847e1dcfafa40f4b8842292bee39b94
|
Provenance
The following attestation bundles were made for pkmnprices-3.1.0.tar.gz:
Publisher:
publish.yml on preaverage/pkmnprices-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pkmnprices-3.1.0.tar.gz -
Subject digest:
3a416690dfe50980040895ef2c479bde4ff6714ba810b20b3e692581076d9687 - Sigstore transparency entry: 2464879351
- Sigstore integration time:
-
Permalink:
preaverage/pkmnprices-py@b7c8d72a82773dc88039e24c52ec9513fe7a8181 -
Branch / Tag:
refs/tags/v3.1.0 - Owner: https://github.com/preaverage
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b7c8d72a82773dc88039e24c52ec9513fe7a8181 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pkmnprices-3.1.0-py3-none-any.whl.
File metadata
- Download URL: pkmnprices-3.1.0-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a32166d966f457f2527f580471d58cee6429cf63268e72f37aeab12280620c44
|
|
| MD5 |
4ac5a6c3dc214402efb46e890a07f102
|
|
| BLAKE2b-256 |
572ed2f2ffa61185dcb06fae8a3b2c645c13efc4318c6942bf3351f3b79f8dc4
|
Provenance
The following attestation bundles were made for pkmnprices-3.1.0-py3-none-any.whl:
Publisher:
publish.yml on preaverage/pkmnprices-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pkmnprices-3.1.0-py3-none-any.whl -
Subject digest:
a32166d966f457f2527f580471d58cee6429cf63268e72f37aeab12280620c44 - Sigstore transparency entry: 2464879388
- Sigstore integration time:
-
Permalink:
preaverage/pkmnprices-py@b7c8d72a82773dc88039e24c52ec9513fe7a8181 -
Branch / Tag:
refs/tags/v3.1.0 - Owner: https://github.com/preaverage
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b7c8d72a82773dc88039e24c52ec9513fe7a8181 -
Trigger Event:
release
-
Statement type: