Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

api-tebex

PichotM27GPL-3.0-only0.2.4TypeScript support: included

A node.js library for interacting with the Tebex API

api, api-client, tebex, tebex-api, fivem, fivem-api, minecraft, minecraft-api

readme

API Tebex


Node.js Typescript GitHub license


Installation

  • Get your Tebex's secret API key from this link.
  • Install the api-tebex package using your package manager Example:
    yarn add api-tebex

Example

const { TebexInstance } = require('api-tebex');

const apple = new TebexInstance('secret-api-key');

// Get webstore information
console.log(apple.server.information());

// Retrive user information
console.log(apple.players.retrieve(1000));

Documentation

  • You can trust JSDocs with your IDE
  • You can build the documentation pages with yarn serve:docs