How do I check if a user has a verification badge?

Roblox has recently released the new verification badge for popular users. I am working on a custom leaderboard system and i want to display whether a user has the badge or not. How do i achieve this cause i have not been able to find any function or property that can help me with this.

The badge i am referring to:

image

1 Like

Edit as of January 14th, 2023: There is now a built in property to check if someone has the verification badge:

Player.hasVerifiedBadge

The User Web API has a property to check if someone is verified.

See this endpoint:

https://users.roblox.com/docs#!/Users/post_v1_usernames_users

Copy and paste this the code below into the parameter value input:

{
  "usernames": [
    "Temprist"
  ],
  "excludeBannedUsers": true
}

The response should be this:

{
  "data": [
    {
      "requestedUsername": "Temprist",
      "hasVerifiedBadge": true,
      "id": 9954703,
      "name": "Temprist",
      "displayName": "Temprist"
    }
  ]
}
1 Like

I completely missed this api endpoint for whatever reason, thanks a lot!

1 Like

Sorry to somewhat bump, but there’s a much easier solution to this:

player.HasVerifiedBadge
6 Likes

That property was added very recently.

At the time of this post, that property didn’t exist.

Ye I know, just for future people who ask the same question.

3 Likes