Is there a way to get the universe ID through place ID without it being outdated?

I meant that you can’t send requests to any page with a domain name ending in or is exactly roblox.com, which is roblox’s domain, through the roblox player client and studio - this is why we use middlemen servers, aka proxies, that will forward the requests we made from the player client and studio to roblox and back

There are free proxy servers available, like RoProxy.com, but are discouraged to use as explained in this post. Instead:

  • You can host your own web server: You can forward requests straight or use a wrapper library for roblox’s web api. This post might help, but there are other resources available
  • You can host open-source servers: For example, rprxy is open-source

Onto the API endpoint, you can test it out for yourself and it gives you the request url along with the response’s body and headers. The response is an array of objects, each representing a place’s details where it contains the place’s universeId.

For example, here’s a request I’ve made:

Request url:
https://games.roblox.com/v1/games/multiget-place-details?placeIds=189707&placeIds=206640076

image