router.get("/queryProfile/:regionId/:realmId/:profileId", async (req, res) => {
  const { regionId, realmId, profileId } = req.params;
  const Sc2API = new StarCraft2API({ region: regionId, clientId, clientSecret });
  const response = await Sc2API.queryProfile({ regionId, realmId, profileId });
  res.json(response);