apextracker-v2

Node wrapper for apextracker v2 api.

Usage no npm install needed!

<script type="module">
  import apextrackerV2 from 'https://cdn.skypack.dev/apextracker-v2';
</script>

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
  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));