An unofficial .NET wrapper for SteamApis.com
$ dotnet add package SteamApis.NetUnofficial https://steamapis.com .NET library, supporting .NET 6.0+
dotnet add package SteamApis.Net
For Dependency Injection (ASP.NET Core or Generic Host)
builder.Services.AddSteamApis(options =>
{
options.ApiKey = "your-steamapis-key";
options.BaseUrl = "https://api.steamapis.com/";
});
Without Dependency Injection
var apiClient = SteamApisClient.Create(new SteamApisOptions()
{
ApiKey = "your-steamapis-key",
BaseUrl = "https://api.steamapis.com/"
});
var inventory = await apiClient.GetUserSteamInventory("7656119...", 730, 2);