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.
The package is available at Nuget.
.Net CLI:: dotnet add package JpnCardsPokemon.Sdk --version 0.1.0-beta
Package manager: NuGet\Install-Package JpnCardsPokemon.Sdk -Version 0.1.0-beta
You can find full documentation here.
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 aritaCharizardCards = await Client.FetchCardsAsync(new CardQueryFilterBuilder { Name = "charizard", Artist = "mitsuhiro arita" });