4.1.1 • Published 11 months ago

@codiium/bloxlink-api v4.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

An unofficial Bloxlink API wrapper for Node.js

Installation

Note

npm install @codiium/bloxlink-api
yarn add @codiium/bloxlink-api
pnpm add @codiium/bloxlink-api

Getting your API Key

Visit the Bloxlink Developer page to get your API key.

Setup/Usage

Global API

You can import the global library by adding /global to the package import path

import global from "@codiium/bloxlink-api/global";

global.setGlobalApiKey("YOUR-API-KEY-HERE");

const response = await global.DiscordToRoblox("756614666066591836");

console.log(response);

Guild API

You can import the guild library by adding /guild to the package import path

import guild from "@codiium/bloxlink-api/guild";

guild.setGuildApiKey("YOUR-API-KEY-HERE");

const response = await guild.DiscordToRoblox("756614666066591836");

console.log(response);

Typings

This package comes with some typings, such as certain data responses, and enums for the different error types. All respones include a statusCode property if you would like to know the status code. That is not included by default in the response body from Bloxlink's API.

4.1.1

11 months ago

4.1.0

11 months ago

4.0.6

11 months ago

4.0.5

11 months ago

4.0.4

11 months ago

4.0.3

11 months ago

4.0.2

11 months ago

4.0.1

11 months ago

4.0.0

11 months ago