### Initialize LuckPerms REST API Java Client and make a call Source: https://github.com/luckperms/rest-api-java-client/blob/main/README.md Example demonstrating how to create a new LuckPermsRestClient instance, configure its base URL and API key, and then execute a GET request to retrieve group data. ```Java LuckPermsRestClient client = LuckPermsRestClient.builder() .baseUrl("http://localhost:8080") .apiKey("abc123") .build(); Response response = client.groups().get("admin").execute(); ``` -------------------------------- ### Add LuckPerms REST API Java Client dependency Source: https://github.com/luckperms/rest-api-java-client/blob/main/README.md Instructions for adding the LuckPerms REST API Java client library as a dependency to your project's build configuration using either Gradle (Groovy) or Maven (XML). ```Groovy repositories { mavenCentral() } dependencies { implementation 'net.luckperms:rest-api-java-client:0.1' } ``` ```XML net.luckperms rest-api-java-client 0.1 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.