⚠ WARNING: I quit Geometry Dash due to a loss of interest towards it. Consequently, it also includes gj-boomlings-api
. This package will no longer be maintained. If you wish to continue maintaining it, feel free to fork this repository and work on your own copy.
gj-boomlings-api is a light-weight Node.js module that allows you to easily interact with Geometry Dash API.
npm i gj-boomlings-api
yarn add gj-boomlings-api
const gd = require("gj-boomlings-api");
gd.dlLevel("95540029").then(console.log);
const gd = require("gj-boomlings-api");
gd.getProfile("shikoshib").then(console.log);
const gd = require("gj-boomlings-api");
gd.getGauntlets().then(console.log);
const gd = require("gj-boomlings-api");
gd.uploadAccountPost("I love gj-boomlings-api!", "shikoshib", "your password here");
// This code sends a message from shikoshib to Mipper6
const gd = require("gj-boomlings-api");
gd.uploadMessage("Mipper6", "message subject", "message content", "shikoshib", "your password here");