Skip to content

ItsTangerine/SteamApis.Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SteamApis.Net

NuGet License: MIT

Unofficial https://steamapis.com .NET library, supporting .NET 6.0+

dotnet add package SteamApis.Net

Usage

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);

About

Unofficial https://steamapis.com .NET library, supporting .NET 6.0+

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages