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