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:
- 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.
- Get all users that have accounts on the devforum and only keep the verified ones.
- Add hardcoded exclusions(I added Roblox and builderman).
- 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:
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.