Verified Users List

Welcome to the topic dedicated to scanning the platform for verified users, its target is to find as many users with a verified checkmark as possible. This is done through means such as using friend, group, and verification related APIs to scan over many users in an efficient and recursive manner. The found verified users are compiled, sorted and double-checked into simple small text lists, split by commas(the seperator is ,). The topic is updated through replies, the newest ones contain the most up to date lists. Currently you can find the newest lists for verified users and groups through the following replies:

Disclaimer 1

Please do not use any of the data provided in this topic to harass, stalk, or create malware targeted towards verified individuals on the platform. The data I provide here is provided for the sole purpose of transparency and personal curiosity, and it should not be used in any way that negatively affects individuals who own verified badges. I claim no responsibility for how you choose to utilize the information on this topic and any malicious actions you decide to take are on you.

Disclaimer 2

The lists shown in this topic are relevant to the time they were uploaded. If you choose to use an outdated list there’s a high chance of you relying on information that contains mistakes. On top of that, some lists contain group and user ids that are banned from the platform, but the respective APIs I used still return the verified status for them. Before using any of the ids I provided for anything, please ensure they still have their verified badge, and they aren’t banned, using proper APIs. I would suggest relying on the id lists more, since usernames can change and may not be up to date. The usernames provided here are for the sole purpose of visualization. Lastly, it’s worth mentioning that the methods provided here approximate the verified users, they don’t return all of them. This means that some accounts may be missed if they aren’t active in any meaningful way(such as business, events, or group holder accounts). Please take all the above into consideration when using any of the provided lists.

Original Post

This topic is the continuation of a previous topic about me looking for the list of verified users on the platform(which I’m not certain if I’m allowed to link here). On that previous topic I was looking for the user ids of all the users with a verified badge, only to discover that Roblox doesn’t provide us with a clean concise way to do that.

Therefore I came up with the following method of fetching said users:

  1. Get all users of the following groups: 1200769(Official group of Roblox), 4199740(Roblox video stars), 10720185(Roblox developer community), 3514227(Roblox devforum community), 650266(Trade) and only keep the verified ones.
  2. Get all users that have accounts on the devforum and only keep the verified ones.
  3. Add hardcoded exclusions(I added Roblox and builderman).
  4. For all the combined verified users found, fetch their friends, if verified friends are found that aren’t already in the list add them to the list and repeat the process recursively for them until no new verified users are found(this usually takes 3-4 iterations).

Using this method at the time of topic creation I was able to detect a total of 1430 verified accounts on the Roblox platform. Here’re two txt files with all the user ids and usernames of those accounts, separated by ,(CSV) and sorted by user id and username respectively:

(these lists are old, the most recent ones are in the last replies of this topic)
verified_ids.txt (13.4 KB)
verified_usernames.txt (15.0 KB)

The reason this was made into a bulletin board topic is because I plan to update the list here once in a while and I also want people outside of the forum to be able to see it.

17 Likes

UPDATE August 2024

Total verified accounts found: 1833 (403 more than last time!)
Newly found accounts: 459
Removed accounts: 56 (probably lost their verification badge)

Keep in mind this doesn’t mean that 459 new people got verified, within those 459 accounts there can be accounts which I failed to detect during the last search.

Lists:

verified_ids.txt (17.4 KB)
verified_usernames.txt (19.1 KB)

The lists are sorted by ids and usernames respectively, all accounts are separated by commas without spaces

Searching Method

Generating Initial Data:

  1. Search all members of Roblox groups considered important(for example Star Creators)
  2. Search the devforum
  3. Search the management roles of popular Roblox groups and groups that upload to the catalog
  4. Search the UGC catalog(item creator ids)
  5. Search the creator catalog(for example plugins)
  6. Search offsite sources(lists found using Google) and get the ids from older searches that are still verified

Then combine, remove duplicates, sort and verify the verified ids found through the above steps.

All the initial searching was done using publicly available information that is visible to none authenticated users. All I did was piece together the entire thing.

Iterate Through Network Graph:

Luckily for us verified people tend to be highly networked, meaning that is easy to detect new ones by using already found ids.

The method I used to iterate through the graph can be described through the following recursive function:

local function searchVerified(id: number)
	if table.find(verifiedIds, id) then return end
	table.insert(verifiedIds, id)
	--the people the verified user follows
	local followings = getFirst10kFollowings(id)
	for _, following in pairs(followings) do
		if following.isVerified then searchVerified(following.id) end
	end
	local friends = getFriends(id)
	for _, friend in pairs(friends) do
		if friend.isVerified then
			searchVerified(friend.id)
		else
			--continue skips the current loop iteration without running the code below it or terminating the loop
			if table.find(searchedFriends, friend.id) then continue end
			table.insert(searchedFriends, friend.id)
			local friendsOfFriend = getFriends(friend.id)
			for _, friendOfFriend in pairs(friendsOfFriend) do
				if friendOfFriend.isVerified then
					searchVerified(friendOfFriend.id)
				end
			end
		end
	end
end

for _, id in pairs(initialVerifiedIds) do
	searchVerified(id)
end

Keep in mind the actual implementation of this isn’t the above recursive function, this is highly simplified for readability. The actual implementation is much more complicated, due to having to minimize API requests, caching, handling errors, handling recursion depth, threading, etc.

Verify Results

For this I just take the found ids and pass them through the users web API to check if they’re still verified, if they’re I add them to the final lists. Then after finishing the verification process I sort both lists.

2 Likes

Verified Groups List

Total verified groups found: 1442

Lists:

verified_group_ids.txt (12.1 KB)
verified_group_names.txt (22.7 KB)

The ids are split by commas without spaces, the names are split by newlines.

Searching Method

Decided to make a list of verified groups as well, all I did was to check the groups the verified people and their friends are in, might update the searching methods to make them more accurate in the future(also look in the catalog, etc)

2 Likes

UPDATE July 2025

Total verified accounts found: 2393 (560 more than last time)
Newly found accounts: 658
Removed accounts: 98

Lists:

verified_ids.txt (23.0 KB)
verified_usernames.txt (24.2 KB)

Keep in mind that the verified_ids.txt list also contains user ids of banned/deleted accounts that still return true values for verification badges when using Roblox APIs. This is why the verified_usernames.txt list contains less entries, because these accounts have “Account Deleted” usernames according to Roblox APIs(so there was no point of adding them to the second list).

Searching Method

Initial Data Generation:

  1. Check all members of important Roblox groups(star creators, Roblox admins, trading groups, etc)
  2. Check all devforum members
  3. Check the management roles of popular Roblox groups
  4. Check the user ids that upload to the catalog(both the user and developer one)
  5. Check offsite sources and older verified search results
  6. Check all user ids up to a specific value(for example 1 million)
  7. Check all active trading accounts on off-platform sites

Recursive processes/main script:

  1. For each verified user found(initiating with initial data) check their friends for verified users, their friends of friends and the people they follow(not the ones that follow them). For every verified user found in those searches, repeat this recursive process, if they haven’t been scanned yet.

  2. For each verified user found, fetch all the groups they are in, and all the groups their friends are in. Then for all these groups, check if their member count is above 1, and if it is, check every role with less than a specific amount of members(my threshold was 10k), if a verified user is found, repeat this recursive process(and also the above one if it wasn’t checked).

Basically to avoid detection you will have to:

  1. Not be in an important Roblox group
  2. Not be active in the devforums
  3. Not have a management role in a popular group
  4. Not upload to the catalog
  5. Not appear in offsite or older lists of mine
  6. Not have a small user id
  7. Not be active on offsite trading platforms/forums
  8. Not be friends with a verified user
  9. Not have a common friend with a verified user
  10. Not be followed by a verified user
  11. Not be in a common group with a verified user and be in a role without many members
  12. Not be in a common group with a friend of a verified user and be in a role without many members

Basically unless you are a company/brand with zero activity but presence on the platform, good luck.

2 Likes

Verified Groups/Communities List (July 2025)

Total verified groups found: 2204 (762 more than last time)
New groups: 970
Removed groups: 208

Lists:
verified_group_ids.txt (18.7 KB)
verified_group_names.txt (34.8 KB)

The ids are split by commas without spaces, the names are split by newlines.

Searching Method

For all the verified users I’m currently aware of, their friends, and the people they follow(the first 10k of them for each), get a list of all the groups they are part of, then remove the duplicates and only keep the groups that have a verified badge. I also added in the results from the previous search after validating which ones are still verified.

5 Likes

UPDATE November 2025

Total verified accounts found: 3651 (1258 more than last time)
Newly found accounts: 1327
Removed accounts: 69 (nice)

Lists:
verified_ids.txt (35.8 KB)
verified_usernames.txt (38.7 KB)

I figured out a way to fetch the usernames of accounts that return Deleted Account with the new API, using the old one. Meaning that the verified_usernames.txt list also has the usernames of banned accounts this time.

Searching Method

Most of the searching remained the same, primarily relying on friend and group APIs. I did found a good trick however, which for the time being is best to keep private.

Also here’s a cool graph showing how the number of verified users increase as the user ids/users of the platform increase:


The same graph but with respect to time instead of amount of users:

5 Likes

Verified Groups/Communities List (November 2025)

Total verified groups found: 2823 (619 more than last time)
New groups: 758
Removed groups: 139

Lists:
verified_group_ids.txt (24.2 KB)
verified_group_names.txt (44.1 KB)

The ids are split by commas without spaces, the names are split by newlines.

Searching Method

The groups were found through the following methods:

  1. A full search of the friends and followings of verified users
  2. A partial search of the friends of friends of verified users
  3. Checking all groups up to 10 million
  4. Groups found in older lists

Then I simply combined and verified the results.

4 Likes

UPDATE December 2025

Total verified accounts found: 4284 (633 more than last time)
Newly found accounts: 683
Removed accounts: 50

Lists:
verified_ids.txt (42.1 KB)
verified_usernames.txt (45.3 KB)

Searching Method

Same as last search

Graphs


9 Likes

UPDATE March 2026

Total verified accounts found: 5120 (836 more than last time)
Newly found accounts: 1008
Removed accounts: 172

Lists:
verified_ids.txt (50.6 KB)
verified_usernames.txt (54.0 KB)

9 Likes