Is there any endpoint for getting the rank of an user in a group?

The title says all, I can’t find one on https://groups.roblox.com/docs#/

Help is appreciated.

1 Like

You can use

:GetRankInGroup(groupid)

Or use a proxy service and have it GET request:
https://groups.roblox.com/v2/users/{userid}/groups/roles
Where {userid} would be replaced with the user you want to check. This method returns a JSON table, so you would have to decode it, find the group you want to check, if it doesn’t exist in the table assume the rank is 0, if it does, check that table at index “rank”