Get Your BrawlStars Stats With bs-api
-
/
Home/:TAG
Players/:TAG/brawlers
Player's Brawlers
-
/brawlers/:TAG
Get A Player's Brawlers (Overview : Name Only
) -
/support/:CODE
Content Creator Code -
/clubs/:TAG
Clubs -
/rankings/
Rankings/rankings/clubs/:CODE
Clubs/rankings/players/:CODE
Players
-
/add/:TAG?token=:CODE
Add A Player As Friend -
/v1
Version 1.0.0/v1/brawlers
List Of Every Brawlers ( StarPowers, Gadgets )/v1/brawlers/:ID
Specific Brawler's Information/v1/battlelog/:TAG
Player's Battlelog/v1/clublog/:TAG
Clublog/v1/events/
Events Rotation
-
Websocket -
wss://wscr.is-a.dev
-
Send A Tag To The Server => Response Data To The Client
Example :
const WebSocket = require('ws')
const ws = new WebSocket('wss://wscr.is-a.dev');
ws.onopen = function open() {
console.log('connected');
ws.send('8CYPU2VLG');
};
ws.onmessage = function incoming(message) {
console.log(JSON.parse(message.data))
};
-
bsapi.js
is an npm package that is used to make request and handle response from BS-API with Promise Base.
Bs-api known as Brawl Stars Stats API is a service where you can get your brawlstars stats easily. Feel Free To Create An Issue If You Have Any Suggestions Or Questions.
This Project Was Made By A Fan Of Supercell Games And Not Affiliate With Supercell Or Brawl Stars. This Project Was Managed And Owned By @brawlie Team
. This Is Not An Official API From Brawl Stars. Made For Education Propose.
APACHE 2.0 License