Skip to content
This repository has been archived by the owner on Jan 22, 2022. It is now read-only.

krunalshahcodes/apextracker-v2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
  1. Signup at ApexTracker
  2. 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));

About

Node wrapper for Apex Tracker v2 API.

Resources

Stars

Watchers

Forks

Packages

No packages published