All Projects → Sprayxe → valorant.js

Sprayxe / valorant.js

Licence: MIT License
An API Wrapper for valorant with oauth support

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to valorant.js

valorant-stats
Valorant statistics bot built with Discord.js using MongoDB
Stars: ✭ 29 (+70.59%)
Mutual labels:  valorant
valorant-api
A NodeJs wrapper for the Riot VALORANT API
Stars: ✭ 51 (+200%)
Mutual labels:  valorant
Coloraimbot-CSharp
A simple Coloraimbot for any Game coded in C# - with additional features
Stars: ✭ 81 (+376.47%)
Mutual labels:  valorant
valorant.py
Complete Python interface for the Valorant API. Works right out of the box!
Stars: ✭ 84 (+394.12%)
Mutual labels:  valorant
VALORANT-rank-yoinker
A Python app which retrieves the VALORANT rank and players' equipped skins during a match
Stars: ✭ 258 (+1417.65%)
Mutual labels:  valorant
unofficial-valorant-api
Unofficial VALORANT API using the VALORANT Ingame API
Stars: ✭ 152 (+794.12%)
Mutual labels:  valorant
valorant-api-docs
Automatically generated documentation for Valorant API endpoints the client uses internally
Stars: ✭ 96 (+464.71%)
Mutual labels:  valorant
valorant.js
This is an unofficial NodeJS library for interacting with the VALORANT API used in game.
Stars: ✭ 48 (+182.35%)
Mutual labels:  valorant
Monotone-HWID-Spoofer
Custom Created Hardware ID Spoofer to Bypass Hardware or IP Bans
Stars: ✭ 145 (+752.94%)
Mutual labels:  valorant
valclient.py
valorant client api wrapper
Stars: ✭ 45 (+164.71%)
Mutual labels:  valorant
KannaKamuiBot
A multipurpose bot for fun, emotes, anime, utility, music, nsfw, valorant, moderation, and welcome/leave messages.
Stars: ✭ 64 (+276.47%)
Mutual labels:  valorant
Valorant-Zone-Stats
View your VALORANT performance in different areas of every map in the game!
Stars: ✭ 72 (+323.53%)
Mutual labels:  valorant
ScrimBot
Discord bot for organizing Valorant custom games.
Stars: ✭ 31 (+82.35%)
Mutual labels:  valorant
WAIUA
"Who Am I Up Against?" (WAIUA) is a Valorant app that lets you see ranks, recent games, skins of players and more, all in and before a live match.
Stars: ✭ 155 (+811.76%)
Mutual labels:  valorant
Valorant-External-Cheat
[ DEDECTED ] Valorant trigger bot with python pillow library.
Stars: ✭ 45 (+164.71%)
Mutual labels:  valorant
Pyot
AsyncIO based high-level Python Riot Games API framework which encourages rapid development and clean, pragmatic design.
Stars: ✭ 56 (+229.41%)
Mutual labels:  valorant
ValorantStoreChecker-discord-bot
Valorant Utility Bot
Stars: ✭ 154 (+805.88%)
Mutual labels:  valorant
Valbot
A Valorant AFK XP Farmer.
Stars: ✭ 46 (+170.59%)
Mutual labels:  valorant
Recon-Bolt
A growing SwiftUI app to let you view your Valorant data.
Stars: ✭ 39 (+129.41%)
Mutual labels:  valorant
valorant-skin-manager
better valorant inventory management
Stars: ✭ 111 (+552.94%)
Mutual labels:  valorant

valorant.js

An API Wrapper for valorant with oauth support

Notice: I've been working on a different project (a .pak reader written in pure js/ts) so this library may have some issues. I will still update it from time to time though so feel free to create a pr/issue :)

Example

(async () => {
  const { RiotApiClient, Region } = require("valorant.js");
  
  try {
    const client = new RiotApiClient({
      username: "MY_USERNAME", // your username
      password: "MY_PASSWORD", // your password
      region: Region.MY_REGION, // Available regions: EU, NA, AP
    });
    
    await client.login();
    console.log(client.user);
    
    const balance = await client.storeApi.getWallet(client.user.Subject);
    console.log(balance);
  } catch(err) {
    console.error(err);
  }
})();

Support

Installation

npm install valorant.js --save

Credits

  • Sprayxe @MarcelWRLD#0999
  • Speeedyyyy @Pilica#8525
  • RumbleMike @RumbleMike#5406 (API Documentation)
  • A small credit in your project would be appreciated (e.g mentioning lib name would be enough)

Dependencies

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].