Enter Access Token


To get your access token, follow these steps:

  1. Associate a Facebook account with your 8 Ball Pool account.
  2. Log in to 8ballpool.com with your Facebook account.
  3. Open the browser's developer console (usually with the F12 key).
  4. Paste the following code into the console and press Enter to get the token:
                            await fetch("https://8ballpool.com/api/v2/user", {
          headers: {
            authorization: localStorage.shopAccessToken,
          },
          referrer: "https://8ballpool.com/game",
          body: null,
          method: "GET",
          mode: "cors",
          credentials: "include"
        }).then(response => response.json()).then(data => data.game_token);