r6-marketplace 1.1.0

dotnet add package r6-marketplace --version 1.1.0
                    
NuGet\Install-Package r6-marketplace -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="r6-marketplace" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="r6-marketplace" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="r6-marketplace" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add r6-marketplace --version 1.1.0
                    
#r "nuget: r6-marketplace, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=r6-marketplace&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=r6-marketplace&version=1.1.0
                    
Install as a Cake Tool

R6 Marketplace API Wrapper

A .NET wrapper for the Rainbow Six Siege Marketplace API.


Installation

With NuGet:

dotnet add package r6-marketplace

Or Visual Studio NuGet Package Manager:

Install-Package r6-marketplace

Getting Started

Initialize the client with your authentication credentials and start interacting with the API. For detailed usage instructions, see the Documentation.

Example

using r6_marketplace;
using r6_marketplace.Endpoints;

namespace Example
{
    class Program
    {
        static async Task Main(string[] args)
        {
            r6_marketplace.R6MarketplaceClient client = new r6_marketplace.R6MarketplaceClient();
            await client.Authenticate("email", "password");

            int balance = await client.AccountEndpoints.GetBalance();

            var inventory = await client.AccountEndpoints.GetInventory(
                limit: 500
            );

            var totalValue = inventory.GetInventoryValue();
            Console.WriteLine($"Total value: {totalValue.TotalValue}");
            Console.WriteLine($"Total value without fees: {totalValue.TotalValueWithoutFee}");
        }
    }
}

Contributing

Contributions are welcome! If you find bugs or want to suggest improvements, feel free to open an issue or create a pull request.


License & Disclaimer

This project is licensed under the Apache 2.0 License.

"Ubisoft" and related marks are trademarks or registered trademarks of Ubisoft Entertainment. This project is not affiliated with, endorsed, or sponsored by Ubisoft Entertainment.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 136 6/17/2025
1.0.2 194 6/13/2025
1.0.1 95 5/31/2025
1.0.0 144 5/26/2025

- Fixed an error with `Authenticate()` not using custom http clients.
- `ImageUri` now has the `Value` of type `Uri`.
- `SearchTags` now has the `GetOriginalName()` method to return readable tags.
- Added XAML comments.