Where would I get these endpoints?

Hello there! I’m trying to make a bot just like this one:

and I want to know where the endpoints are on roblox, I mean where are the endpoints that bot has. As you can see, it has current players, peak, like ration, favorited-count, visits, average fps and average ping. Is there and endpoint for this?

1 Like

Hey there,

Assuming you’re using Node.js as a backend, this topic might help. One of the solutions was pretty interesting and involved screenscraping the actual page to get the data you’re looking for.

Also: For peak concurrent players, you could store the amount of players as a variable (or in a database if that works for you?), and then when you want to display this data, check if the current player count is greater than the previous one. If it is, set the peak variable to the current player count, and that’s your new peak.

I cannot see anything for concurrent players though…?

Did you read through this person’s reply? They explained how you could get it off of the page.

Edit: I linked the wrong reply in that topic in my original post. Meant the one above.

2 Likes