- Notifications
You must be signed in to change notification settings - Fork1
TheGameVlog/Valorant-API-CSharp-Wrapper
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Simple to use .NET Wrapper to connect to Valorant-API.com
ValorantClient vClient = new ValorantClient(); List<Agents> allAgents = vClient.GetAgents(); Console.WriteLine(allAgents[0].DisplayName);
Classes Created for Object Types with Properties which makes fetching data more easier
Example Agents Class
public class Agents { [JsonProperty("uuid")] public string Uuid { get; set; } [JsonProperty("displayName")] public string DisplayName { get; set; } [JsonProperty("description")] public string Description { get; set; } [JsonProperty("developerName")] public string DeveloperName { get; set; } [JsonProperty("characterTags")] public List<string> CharacterTags { get; set; } [JsonProperty("displayIcon")] public string DisplayIcon { get; set; } [JsonProperty("displayIconSmall")] public string DisplayIconSmall { get; set; } [JsonProperty("bustPortrait")] public string BustPortrait { get; set; } [JsonProperty("fullPortrait")] public string FullPortrait { get; set; } [JsonProperty("assetPath")] public string AssetPath { get; set; } [JsonProperty("isFullPortraitRightFacing")] public bool IsFullPortraitRightFacing { get; set; } [JsonProperty("isPlayableCharacter")] public bool IsPlayableCharacter { get; set; } [JsonProperty("isAvailableForTest")] public bool IsAvailableForTest { get; set; } [JsonProperty("role")] public Role Role { get; set; } [JsonProperty("abilities")] public List<Ability> Abilities { get; set; } }
A WPF Example and Console Application Example is included in this Repo.
As of now the wrapper only includes objects for Agents, Buddies, Bundles, Maps, ContentTiers support for more will be added shortly.
The Game Vlog
Riot Games, Valorant, and all associated properties are trademarks or registered trademarks of Riot Games, Inc.
About
Simple to use .NET Wrapper for valorant-api.com
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published