JG_API
is a Java API wrapper made for use with the Guilded REST API. JG_API has built in features such as an automatic queue system to try to avoid rate limiting from the Guilded API. Much of JG_API's system is inspired by the ideas of Java Discord API known as JDA.
private static JG_API jg_api;
private static final String GUILDED_SERVER_ID = "";
private static final String GUILDED_TOKEN = "";
public static void main(String[] args) throws ClientBuildException {
JG_API.ClientBuilder cb = new JG_API.ClientBuilder();
cb.setToken(GUILDED_TOKEN);
jg_api = cb.build();
jg_api.login();
jg_api.start();
}