Myzerous
(Myz)
September 24, 2023, 10:56pm
#1
Hi, so im making a game similar to Trade Hangout, and I am making a frame that displays your limiteds. Is there any api or service that I can use to display the item names. Any help will be appreciated!
-Myz
1 Like
ItsEGT
(EGT)
September 24, 2023, 11:32pm
#2
Found this thread that might be able to help you. I’m pretty sure the proxy used here isn’t up anymore, but you could maybe look into using roproxy
instead.
You can access the Roblox APIs through rprxy.xyz. This script gets the total RAP of a player through their user id, made for you.
local httpService = game:GetService("HttpService")
local function GetTotalRAP(userId)
local success, msg = pcall(function()
local total = 0
local function CollectRAP(cursor)
local url = "https://inventory.rprxy.xyz/v1/users/" .. userId .. "/assets/collectibles?sortOrder=Asc&limit=100"
if cursor then
url = url .. "&cursor=" .. cur…
1 Like
ItsEGT
(EGT)
September 24, 2023, 11:33pm
#3
Here’s a thread related to roproxy
:
Been running this a few months without really promoting it, rprxy.xyz recently shut down so figured I’d post about it here.
A few highlights:
Significantly faster than rprxy was.
Access to all apis and endpoints, including catalog api.
No rate limits.
Let me know if you have any suggestions or run into any issues.
Disclaimer: I can’t recommend RoProxy (or any public proxy) for production applications. Albeit rare, downtime and slowdowns are inevitable, and you should never rely on third par…
1 Like