JDA-Client is an updated Version from DV8FromTheWorld/JDA-Client
With this API you can look up a specific user,
for example you can get their Discord#Tag, Creation date,
or Avatar url
You can try it here
JDAClientBuilder jdaClientBuilder = new JDAClientBuilder().setToken("Your User Token");
JDAClient jdaClient = jdaClientBuilder.buildSelfUser();JDAClientBuilder jdaClientBuilder = new JDAClientBuilder().setToken("Your User Token").setId("User ID, from the User you want");
JDAClient jdaClient = jdaClientBuilder.buildUser();JDAClientBuilder jdaClientBuilder = new JDAClientBuilder().setToken("Your User Token").setId("User ID, from the User you want");
JDAClient jdaClientSelf = jdaClientBuilder.buildSelfUser();
JDAClient jdaClient = jdaClientBuilder.buildUser();First start your Discord App and press CONTROL + SHIFT + i,
Now it will open the Discord integrated "Code Lookup",
Navigate to "Application" >> "Local Storage" >> "https://discord.com", you will see this:

Search for your Discord Token, by entering in Filter "token",
Press CONTROL + r, to reload Discord.
Now you will see this:

Now copy the Value of your "token" and insert into the JDAClientBuilder().setToken("Your User Token");