https://github.com/shikoshib/gj-boomlings-api
A light-weight Geometry Dash API wrapper
https://github.com/shikoshib/gj-boomlings-api
api boomlings gaming gd geometrydash gj robtop
Last synced: about 1 year ago
JSON representation
A light-weight Geometry Dash API wrapper
- Host: GitHub
- URL: https://github.com/shikoshib/gj-boomlings-api
- Owner: shikoshib
- License: isc
- Archived: true
- Created: 2022-12-17T11:31:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T11:31:12.000Z (about 1 year ago)
- Last Synced: 2025-04-12T22:55:28.027Z (about 1 year ago)
- Topics: api, boomlings, gaming, gd, geometrydash, gj, robtop
- Language: JavaScript
- Homepage:
- Size: 273 KB
- Stars: 9
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**⚠ 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.
# About
**gj-boomlings-api** is a light-weight Node.js module that allows you to easily interact with Geometry Dash API.
# Installation
## Node.js
```
npm i gj-boomlings-api
yarn add gj-boomlings-api
```
# Examples
## Download a level
```js
const gd = require("gj-boomlings-api");
gd.dlLevel("95540029").then(console.log);
```
## View a profile
```js
const gd = require("gj-boomlings-api");
gd.getProfile("shikoshib").then(console.log);
```
## Get gauntlets
```js
const gd = require("gj-boomlings-api");
gd.getGauntlets().then(console.log);
```
## Post a message on a profile
```js
const gd = require("gj-boomlings-api");
gd.uploadAccountPost("I love gj-boomlings-api!", "shikoshib", "your password here");
```
## Send a message
```js
// 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");
```
# License
[ISC](https://github.com/shikoshib/gj-boomlings-api/blob/main/LICENSE)