Get your total robux with roblox api

Hi, i made a node.js script to make request to get your total robux.

const axios = require("axios");
const cookieValue = "your account cookie"; //set your roblox account cookie
const robloxId = 0; //set your roblox account id

axios.get(`https://economy.roblox.com/v2/users/${robloxId}/transaction-totals?timeFrame=Month&transactionType=summary`, {
  headers: {
    Cookie: `.ROBLOSECURITY=${cookieValue}`,
  }
}).then(response => {
  console.log(`You have ${response.data.pendingRobuxTotal + response.data.incomingRobuxTotal} Robux`);
});

you need to install axios(make sure your cookie cannot be accessed by others)
you can improve the script it’s very basic but functional (normally)
you can add more features like sending to a webhook (with axios too, just a post request)

6 Likes

1 Like

Would’ve been better if you can put in three backticks, It supports JavaScript

1 Like