Question about the GameJoin API

So, I have recently found this GameJoin Api and I was curious to learn more about it, but I could not find anything. So, my question is, how would I use this one if it is possible?

1 Like

It’s an HTTPS POST request. Send a POST with the headers for authentication and what it needs in the post body and then that is pretty much it.

For example, /v1/join-game:

  1. Prepare body (and the proper authentication aswell):
    “placeId”: number,
    “gamerTag”: string,
    “isPartyLeader”: boolean,
    “isPlayTogetherGame”: boolean,
    “browserTrackerId”: number,
    “isTeleport”: boolean
  2. Send the request
4 Likes

what does the gameid mean? is it the same one from the game page or is it different

It is the games JobId, which is the unique identifier for the server.

Read more here: DataModel | Roblox Creator Documentation

IIRC, you can’t just send a POST and expect it to work. I believe only requests that originate from roblox.com are approved.

If you put ‘Referer: www.roblox.com’ header then it’ll bypass it

2 Likes