realmsplus-api
v1.0.3
Published
Official SDK for the Realms+ API
Maintainers
Readme
realmsplus-api
Official SDK for the Realms+ API's public endpoints. This service maintains a database of harmful users in the Minecraft Bedrock Community.
Requirements
- Node.js 22.0.0 or higher
- A valid Realms+ API key
Get Started
To use this package, you need an API key.
- Join our Discord server
- Open a ticket to contact support
- Request API access and provide your use case
- Once approved, you will receive your API key
Installation
npm install realmsplus-apiUsage
import { RealmsPlusAPI } from "realmsplus-api";
const client = new RealmsPlusAPI("your-api-key");
(async () => {
// Check service health
const health = await client.getHealth();
console.log(health);
// Query the hacker database
const result = await client.getHackerDB("all");
console.log(result);
})();See more examples
