A C# library to read auctions in fragment.com
// A unified client to work with fragment.com different auctions.
var client = new FragmentClient();
// Reading all auctions with EndingSoon filter.
var auctionItems = await client.Numbers.GetAuctionsItemsAsync(SortType.EndingSoon);
// Reading all for-sale items.
var saleItems = await client.Numbers.GetSaleItemsAsync(FilterType.ForSale);
// Reading all sold items.
var soldItems = await client.Numbers.GetSoldItemsAuctionsAsync(FilterType.Sold);
Install the package using:
dotnet add package TonRadar.Fragment