Hello all, I have searched through the forums and found similar things like this but none of them worked.
I wanted to get place visits of a game using the roblox API but I couldn’t.
Here is the code:
local HttpService = game:GetService("HttpService")
local API_URL = "http://rprxy.xyz/v1/games?universeIds="..game.GameId -- API that you want to get from
local Data = HttpService:GetAsync(API_URL):JSONDecode()
print(Data.visits)
Can anybody help or recommend a proxy?
(I think it’s because roblox doesn’t wanna get DDOSed so they disabled requests to their websites)
You didn’t send it to the correct URL. For roblox’s game API, the base url is https://games.roblox.com
, and you of course need to replace roblox.com
with rprxy.xyz
:
local HttpService = game:GetService("HttpService")
local API_URL = "http://games.rprxy.xyz/v1/games?universeIds="..game.GameId -- API that you want to get from
local Data = HttpService:GetAsync(API_URL):JSONDecode()
print(Data.visits)
2 Likes
Thank you so much! It worked 
No it didn’t actually. The API has gone blank for my game. I tried getting place visits and it’s blank.
http://games.rprxy.xyz/v1/games?universeIds=5358897798
Nevermind, I had to use place id
Or not, I had to use game ID now!
Nope, it’s not working once AGAIN!
1 Like