C# SDK for interaction with jpn-cards.com
Find a file
2023-03-03 19:16:12 +01:00
docs Completes the documentation files 2023-03-03 19:16:05 +01:00
JpnCardsPokemon.Sdk Updates version number 2023-03-03 18:52:36 +01:00
JpnCardsPokemon.Tests Adds basic tests for card prices 2023-03-03 15:24:06 +01:00
.gitignore Initial commit 2023-01-28 21:16:29 +01:00
JpnCardsPokemonSdk.sln Reorganizes project structure 2023-03-01 22:06:38 +01:00
LICENSE Initial commit 2023-01-28 21:16:29 +01:00
README.md Updates Readme 2023-03-03 19:16:12 +01:00

japanese-pokemon-cards-sdk-csharp

Dependency-free C# SDK for interaction with jpn-cards.com. With the SDK you can gather information about Japanese Pokémon TCG. This includes information about sets and cards, including current price information if available. The data is provided by an external API. Please check the above link for more information. The SDK only fetches their current JSON data and wraps them into object.

Documentation

You can find full documentation here.

Examples

Fetch all sets:

var client = new ApiClient();
// fetch all set information
var sets = await client.FetchSetsAsync();

// fetch cards from set
var vmaxClimaxCards = await Client.FetchCardsAsync(new CardQueryFilterBuilder { SetCode = "s12a" });

// fetch all morpeko cards
var morpekoCards = await Client.FetchCardsAsync(new CardQueryFilterBuilder { Name = "morpeko" });

// fetch all Charizard drawn by Arita
var artiaCharizardCards = await Client.FetchCardsAsync(new CardQueryFilterBuilder { Name = "charizard", Artist = "mitsuhiro arita" });