apextracker-v2
v1.0.0
Published
Node wrapper for apextracker v2 api.
Downloads
1
Maintainers
Readme
Apex Tracker v2
A simple, easy to use module for interacting with the Apex Tracker
Setup and Installation
yarn add apextracker-v2
or if you are using npm
npm i apextracker-v2
- Signup at ApexTracker
- Generate an API Key
Get Player
const Apex = require("apextracker-v2");
const api = new Apex("Your Api Key");
api
.user("username", "platform [origin||xbl||psn]")
.then(res => console.log(res.data));
Search Player
const Apex = require("apextracker-v2");
const api = new Apex("Your Api Key");
api
.search("platform [origin||xbl||psn]", "search term")
.then(res => console.log(res.data));