Data
This will teach you how to retrieve character data and basic properties.
Fetching user data
api.fetchGenshinUser(722777337, (user) -> {
final GenshinUserInformation info = user.toGenshinUser();
});Fetching users characters
api.fetchGenshinUser(722777337, (user) -> {
final GenshinUserInformation info = user.toGenshinUser();
for (GenshinUserCharacter character : info.getCharacters()) {
}
});Fetching a characters name
Last updated