Reading 3rd party game info

I need to know if there is a way to read 3rd party game info.
What I mean by this, is that I need to know if there is a ServiceProvider (or other source) that allow me to read game information (visits, player count etc) from places that I don’t own or have access to.

Is this possible? I’ve looked around and can’t find any helpful info.
Thanks!

Yeah, you can use https://games.roblox.com/v1/games/multiget-place-details?placeIds=PLACE_ID. to get the unvierse id.

You will have to use a middleman server to do the request though, as the ingame server can not make requests to the roblox.com domain.

Then you send requests to the other urls for getting favorites, visits, etc.

Example:

https://games.roblox.com/v1/games/multiget-place-details?placeIds=920587237

Universe Id, 383310974

And so,
https://games.roblox.com/v1/games/383310974/favorites/count
https://games.roblox.com/v1/games/383310974/votes
https://games.roblox.com/v1/games?universeIds=383310974

Could you elaborate on ‘middle man servers’?
Trying to put your answer to use, but I can’t seem to get my head around it all :grimacing: