Skip to main content

Roblox

Base URL: https://drain.lat/api/v1/roblox
Fetch a public Roblox user’s profile including follower counts, avatar, and account info.
GET /api/v1/roblox/profile/:username
username
string
required
The Roblox username to look up.
curl "https://drain.lat/api/v1/roblox/profile/Builderman" \
  -H "x-api-key: YOUR_API_KEY"
id
number
Roblox user ID.
username
string
Roblox username.
displayName
string
Display name shown on profile.
bio
string
Profile bio/description.
isBanned
boolean
Whether the account is banned.
created
string
Account creation date (ISO 8601).
friends
number
Number of friends.
followers
number
Number of followers.
following
number
Number of accounts followed.
avatarUrl
string
URL to the user’s avatar image.
profileUrl
string
Link to the Roblox profile page.
scrapedAt
string
Timestamp of when the data was fetched.
Response
{
  "id": 3,
  "username": "Builderman",
  "displayName": "Builderman",
  "bio": "Welcome to Roblox!",
  "isBanned": false,
  "created": "2006-02-27T21:06:40.3Z",
  "friends": 20,
  "followers": 78432,
  "following": 1,
  "avatarUrl": "https://tr.rbxcdn.com/...",
  "profileUrl": "https://www.roblox.com/users/3/profile",
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}
Get the public games created by a Roblox user.
GET /api/v1/roblox/profile/:username/games
username
string
required
The Roblox username.
curl "https://drain.lat/api/v1/roblox/profile/Builderman/games" \
  -H "x-api-key: YOUR_API_KEY"
userId
number
Roblox user ID.
username
string
Roblox username.
games
array
Response
{
  "userId": 3,
  "username": "Builderman",
  "games": [
    {
      "id": 1818,
      "name": "Classic: Crossroads",
      "description": "The classic Roblox game.",
      "plays": 12043210,
      "favoritedCount": 45231,
      "created": "2007-05-01T00:00:00Z",
      "updated": "2023-01-01T00:00:00Z",
      "url": "https://www.roblox.com/games/1818"
    }
  ],
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}
Only returns public games. Private games are not included.
Get a user’s Roblox friends list.
GET /api/v1/roblox/profile/:username/friends
username
string
required
The Roblox username.
curl "https://drain.lat/api/v1/roblox/profile/Builderman/friends" \
  -H "x-api-key: YOUR_API_KEY"
userId
number
Roblox user ID.
username
string
Roblox username.
friends
array
total
number
Total number of friends returned.
Response
{
  "userId": 3,
  "username": "Builderman",
  "friends": [
    {
      "id": 12345,
      "username": "Player1",
      "displayName": "Player One",
      "profileUrl": "https://www.roblox.com/users/12345/profile"
    }
  ],
  "total": 1,
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}
As of May 2026, Roblox removed unauthenticated access to follower/following lists. This endpoint may return an error for some accounts depending on their privacy settings.
Get badges earned by a Roblox user.
GET /api/v1/roblox/profile/:username/badges
username
string
required
The Roblox username.
curl "https://drain.lat/api/v1/roblox/profile/Roblox/badges" \
  -H "x-api-key: YOUR_API_KEY"
userId
number
Roblox user ID.
username
string
Roblox username.
badges
array
total
number
Total badges returned.
Response
{
  "userId": 1,
  "username": "Roblox",
  "badges": [
    {
      "id": 2124445684,
      "name": "Welcome To Bloxburg",
      "description": "You visited Bloxburg!",
      "imageUrl": "https://www.roblox.com/asset-thumbnail/image?assetId=...",
      "enabled": true
    }
  ],
  "total": 12,
  "scrapedAt": "2026-05-08T10:00:00.000Z"
}
Get the groups a Roblox user belongs to, including their role.
GET /api/v1/roblox/profile/:username/groups
username
string
required
The Roblox username.
curl "https://drain.lat/api/v1/roblox/profile/Roblox/groups" \
  -H "x-api-key: YOUR_API_KEY"
userId
number
Roblox user ID.
username
string
Roblox username.
groups
array
total
number
Total groups returned.
Response
{
  "userId": 1,
  "username": "Roblox",
  "groups": [
    {
      "id": 1200769,
      "name": "Roblox",
      "description": "Official Roblox group.",
      "memberCount": 8200000,
      "role": "Owner",
      "rank": 255,
      "isOwner": true,
      "url": "https://www.roblox.com/groups/1200769"
    }
  ],
  "total": 3,
  "scrapedAt": "2026-05-08T10:00:00.000Z"
}