Skip to content

ImmortalDoesDev/brawl-stars-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

brawl-stars-api

An API Wrapper for Brawl Stars API

Installation

npm install --save brawl-stars-api

Initialization

const brawlApi = require('brawl-stars-api');
const client = new brawlApi({
    token: 'Token'
})

You can also use BS_API_TOKEN env variable for the token

How to get a token?

You can get your token here

Club Search By Tag

client
.clubByTag('#VQJPJY0L')
.then(res => console.log(res))
.catch(err => console.log(err));

Player Search By Tag

client
.playerByTag('#VQJPJY0L')
.then(res => console.log(res))
.catch(err => console.log(err));

About

An API Wrapper for Brawl Stars API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published