ClashRoyaleDotNet 1.0.3
See the version list below for details.
dotnet add package ClashRoyaleDotNet --version 1.0.3
NuGet\Install-Package ClashRoyaleDotNet -Version 1.0.3
<PackageReference Include="ClashRoyaleDotNet" Version="1.0.3" />
paket add ClashRoyaleDotNet --version 1.0.3
#r "nuget: ClashRoyaleDotNet, 1.0.3"
// Install ClashRoyaleDotNet as a Cake Addin #addin nuget:?package=ClashRoyaleDotNet&version=1.0.3 // Install ClashRoyaleDotNet as a Cake Tool #tool nuget:?package=ClashRoyaleDotNet&version=1.0.3
Clash Royale .NET
An unofficial .NET wrapper for Supercell's Clash Royale API.
Installation
Install the NuGet package.
Add the
ClashRoyaleAPI
namespace wherever you want to use it:using ClashRoyaleAPI;
Usage
After installing, you'll be able to reference the classes and methods.
In order to use the API, you need to obtain an API key and pass it to the ClashRoyale
class using the Key
property:
ClashRoyale.Key = "<your_key>";
Optionally, you can choose to use RoyaleAPI proxy servers using the UseProxyServers
property:
ClashRoyale.UseProxyServers = true;
Player information
To get information about a player, use the GetPlayerByTag
method:
Player player = ClashRoyale.GetPlayerByTag(tag:"#2PRQQVR88");
Although in the official API it is divided into different requests, this information also contains the player's Battle log and upcoming Chests.
Clan information
By Tag
To get information about a particular Clan, use the GetClanByTag
method:
Clan clan = ClashRoyale.GetClanByTag(tag: "#L2QCY2VC");
By properties
To get information about Clans searched by their properties, use the GetClansBySearch
method:
Clan[] clans = ClashRoyale.GetClansBySearch(name: "HMaK", locationID: 57000070, minMembers: 35, maxMembers: 45, minScore: 30000);
Although in the official API it is divided into different requests, this information also contains the Clan's current and previous River races.
Card information
To get information about all Cards, use the GetAllCards
method:
Card[] cards = ClashRoyale.GetAllCards();
Challenges information
To get information about currently known Challenges, use the GetCurrentChallenges
method:
ChallengeChain[] challengeChains = ClashRoyale.GetCurrentChallenges();
API coverage
The latest realease covers these parts of the official API:
- players
- Clans
- Cards
- Challenges
These parts are not covered yet:
- Tournaments
- locations
Contact
If you encounter any bug or imperfection, please let me know by submitting an issue.
With questions or anything else, send me an email to matousvolfu@gmail.com.
This material is unofficial and is not endorsed by Supercell. For more information see Supercell's fan content policy.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
-
net6.0
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fixed summary IDE visibility.