https://premiumfeatures.roproxy.com/v1/users/{userId}/validate-membership
is returning unauthorized on a GET request
The endpoint requires you to be logged in. You need to pass a ROBLOSECURITY
ah i didn’t even realize. thats strange. thanks
do you happen to know of any endpoint that doesn’t require a cookie to get the premium status of a user
I’m not aware of any other endpoints
If you really want to:
if i wanted to do that i would just connect to my own proxy with a cookie & request to the premiumfeatures endpoint but im not trying to setup a whole api for it so wtv
local HTTPService = game:GetService(“HttpService”)
local success, servers =
pcall(
function()
return HTTPService:JSONDecode(
HTTPService:GetAsync(“https://games.roproxy.com/v2/games/game.PlaceId/servers/Public?limit=100”)
).data
end
)
if success then
local server = servers[1]
for i, svr in pairs(servers) do
if svr["ping"] < server["ping"] then
server = svr
end
end
game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, server.id)
else
print(servers)
end
I cannot access game api
Could you add support to the following endpoints?
voice.roblox.com
https://apis.roblox.com/v1/subscriptions/
Is there an api for getting the price of an limited item?
You’re using the link incorrectly. "game.PlaceId"
should be your PlaceId, not just this text. Use this instead:
HTTPService:GetAsync(`https://games.roproxy.com/v2/games/{game.PlaceId}/servers/Public?limit=100`)
@OFFnoonbacon To get the price of a limited item, you can use the Rolimons API.
I see so much potential in this project.
But can anybody please tell me the format of url after using Roporxy.
Because i only heard people say "just replace the ‘roblox.com’ with roproxy.com
And that doesn’t seem to work in most of my cases.
what API did you try to access
Thank you. But how can i find the rest of the apis?
Like the asset api and soo on
You can see all the APIs here. Just be sure to change the domain from roblox => roproxy as @Exozorcus mentioned.
However there may be other deprecated APIs they haven’t included in there since they also included APIs not being used anymore, so I can give you a brief overview of other ones:
fonts.roblox.com/docs
realtime.roblox.com/docs
captcha.roblox.com/docs
forum.roblox.com/docs
Roproxy does not support these subdomains so I just used these example ones.
isn’t that prohibted by the TOS?
I want to
- display a list of current front page games from different sorts and filters
- display a list of player’s recently played game
- display a list of player’s favorite games
- display a list of player’s friend’s playing
- display a list of recommend games for the player
As you have mentioned, this is a free proxy, however, I was wondering if it is free for you? If so, could you inform me of where you host it at?
I am currently working on a game using Roproxy to retrieve quite a bit of information, and unfortunately(but expected) this is resulting in about a 2s delay each time to gather all required information. I have tried to combat this by having the server constantly cache new required data that the player can then just pull from the cache. However, I was hoping to find ways to speed this all up, by maybe hosting my own proxy, but don’t exactly have funds to do so at the moment. I am curious if you could tell me how places like Catalog Avatar Creator and PLS Donate manage to proxy information at such a high rate and speed?