What do you want to achieve?
is there an easier way for me to get the universe id of a game from the place id?
What is the issue?
the standard “HttpService is not allowed to access ROBLOX resources”. im still learning the API, and running my own proxy seems quite difficult and time consuming. Is there a different way for me to achieve this?
What solutions have you tried so far?
older posts on this topic didn’t help much at all, just advising to use roproxy which doesn’t seem to have this endpoint?
local httpService = game:GetService("HttpService")
placeid = 5357203396
local data = httpService:GetAsync("https://apis.roblox.com/universes/v1/places/"..placeid.."/universe")
data = httpService:JSONDecode(data)
local uni = data.UniverseId
print(uni)