Converting PlaceID To UniverseID

  1. What do you want to achieve? I Want To Convert PlaceID To UniverseID

  2. What is the issue? i already made a code but i think i need .ROBLOSECURITY to use that code. here is the code

game.ReplicatedStorage.ConvertToUniverseID.OnServerInvoke = function(id:number)
	local url = "https://games.roproxy.com/v1/games/multiget-place-details?placeIds=".. tostring(id)
	local IsSuccess, Result = pcall(function()
		return HttpService:GetAsync(url)
	end)

	if IsSuccess then
		local data = HttpService:JSONDecode(Result)
		warn(data)
	else
		warn("not success ".. Result)
	end
end

  1. What solutions have you tried so far? I Looked DevHub but they are just telling to use multi-get. but the problem is like i said it requires .ROBLOSECURITY. so plz help
3 Likes

This is not the end point for roproxy, but the end point used in the Roblox APIs. There should be an equivalent on Roproxy somewhere

https://apis.roblox.com/universes/v1/places/PLACEID/universe

Replace PLACEID with the PlaceID to check. It does NOT require any cookies be inputted.

1 Like

i already tried that. it says HTTP Service cannot access Roblox Resources. thats why i changed it to roproxy.com