Skip to content

fman42/CSGOMarket

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSGOMarket

The library for working with CSGO Market API

In the moment a library has only 2 methods('cause i did this for my project and may be i'll update in future) But if you want use this then get all documentation:

AuthClient client = new AuthClient("your_secret_key"); // You can add your HttpClient as second parametr
ItemEndPoint items = new ItemEndPoint(client);

var item = await items.GetItemInfo("314141_0"); // first method
if (item != null)
{
    Console.WriteLine(item.HashName);
    var result = await items.BuyItem("314141_0", item.MinPrice, "user steam id") // or you can pass tradeUrl instance of steamId. And yes, this is second method
}

About

The library for working with CSGO Market API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages