GD API is a module that allows you to easily interact with the Geometry Dash private API. The module documentation is available at https://docs.sodiumlabs.xyz/gdapi.
This module does not include all features of the Geometry Dash API, such as endpoints that require user passwords. However, you can combine it with the knowledge from the unofficial GD docs to access everything if needed.
npm install @sodiumlabs/gdapi@latest
import { GDAPI } from "@sodiumlabs/gdapi";
const gdapi = new GDAPI();
// Get RobTop account
const user = await gdapi.getUserById(71);
console.log(user);
If you don't understand something in the documentation, are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Discord Server.