Accessing the Profile endpoints of foreign servers

Hey guys,
I’ve recently started developing an application that pulls some character data from the Warcraftlogs API and then uses the results to pull data about the characters from the BlizzardAPI.

The only problem is when i get a foreign server name like a KR or a RU server. I don’t know how to transform the name of the server (e.g. 아즈샤라 or ревущий-фьорд respectively Azshara and Howling Fjord). I can manually translate all the servers, but i was hoping there is a list of all the names + slugs.

So far i have tried: (can’t include links)

  • eu…data/wow/realm/index - which works for RU realms as they are included
  • kr…data/wow/realm/index - does not work for KR realms as the server name is null for all of them and only the slug is present.

Is this intended and if so is there a way for me to grab KR server slugs from the native server name?

Thanks in advance!

EDIT: I’ve found out that if you omit the locale in the “data/wow/realm/index” it will return all the different names of the server in all languages. This allowed me to query for KR names as well. Leaving this here for anyone struggling with the same!