Is it possible to check if a group is closed or open?

I’m trying to find out a way to detect if a group is closed or open. I tried using the Roblox Groups API but I can’t find any option for group opening / closing detection. I’ve tried finding a specific html element to detect if group is closed (I know there is an element which its value says “Group Closed”, but that is not loaded when you actually first look at the page source).

I’ve tried finding html element to detect group if it’s closed or open. Yes, there is an element with its value “Group Closed”, but that is not loaded into the page at first.

So, is it possible to check if a group is closed or open in the Roblox API somehow, or if you guys know?

(I’m not talking about join approval. Some groups are abandoned and they might become closed.)

Try sending a GET request to https://groups.roblox.com/v1/groups/groupIdHere

The “publicEntryAllowed” key might be of interest to you.

1 Like

You can use the Groups API to see the following:)

  1. How many users are in the group
  2. See if the group has pending join-requests enabled. If they do, and there are zero users in the group then you’d assume the group is “closed.”
1 Like

On the v1 Groups API, I found out the “publicEntryAllowed” which got me the solution.

https://groups.roblox.com/v1/groups/GroupID

Your solution actually helped a lot, and now I’ve found the solution. Thank you very much. I don’t know why your post is deleted or something.

Thanks for the help. I found my solution, but I appreciate the help.