Development of this project has ceased as I kept getting unexplainable "Response status code does not indicate success: 400 (Bad Request)" errors when trying to use the private API.
Below is an example listing all trading assets.
using BlocktradeClient client = new();
var tradingAssets = await client.GetTradingAssetsAsync();
foreach (var tradingAsset in tradingAssets)
Console.WriteLine($"Name: {{tradingAsset.FullName}}");