Current Game Roblox API

I’m looking for an api that is able to track if a specific player is currently playing a game. I’m couldn’t find any apis for that so if anybody has a link that would be very appreciated.

1 Like

presence.roblox.com/v1/presence/users
https://presence.roblox.com/docs/index.html

How would I put this into my code?

Use HttpService.

First, get the base url (you need a proxy, in this example I use roproxy.com).
image

Then, find the endpoint you want to use. For this example, I will get the last online date of an account.

image

Then, build the request according to the guide. For this example, I use HttpService:RequestAsync().

Running this, we get:

So, all that’s left is to JSONDecode!

You can do this with any roblox api by the way.

4 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.