Can we get Roblox web page assets from other people games?

I have been looking at the wiki trying to think of a way that I can dynamically get the Title, Description, Likes, Icon, etc from games I own and also games I do not own and use them within a game.

For example, in game “A” I would create some teleports to other games, lets say game “B” I do own and game “C” I do not own. Next to each teleport in game “A”, I would like to have a sign that has the current title and current icon displayed and have these fetched on server start or some other period so that they are always kept up to date without having to manually change these.

Is it possible?

It’s certainly possible, as shown in Game Tracker. I do not know if this is done using Roblox or a third party source.

1 Like

There is an API for get games details, more than what you are asking for: https://games.roblox.com/docs#!/v1

1 Like

I understand that using the web endpoints is not recommended for in-game usage?

heres EchoReaper from another post:

that said, this seem like perhaps the only way to do what I am asking for?

If this is true, anyone know where to find documentation on how to use these endpoints inside a game?

I think it’s the only way. The page I gave you is a documentation, but to use them in a game, if you know how to use HttpService you just have to make a Request using a proxy, if you don’t know what I’m talking about I show you an example using a proxy called rprxy:

game.HttpService:GetAsync("https://games.rprxy.xyz/v1/games/list?model.sortPosition=1")

To get https://games.roblox.com/v1/games/list?model.sortPosition=1

1 Like