Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.drain.lat/llms.txt

Use this file to discover all available pages before exploring further.

Roblox

Base URL: https://drain.lat/api/v1/roblox All endpoints require the x-api-key header.

GET /profile/:username

Fetch a public Roblox user’s profile including follower counts, avatar, and account info. Endpoint
GET /api/v1/roblox/profile/:username
curl "https://drain.lat/api/v1/roblox/profile/Builderman" \
  -H "x-api-key: YOUR_API_KEY"
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"
}
Uses Roblox’s public API. Follower and following counts are publicly accessible.

GET /profile/:username/games

Get the public games created by a Roblox user. Endpoint
GET /api/v1/roblox/profile/:username/games
curl "https://drain.lat/api/v1/roblox/profile/Builderman/games" \
  -H "x-api-key: YOUR_API_KEY"
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 in the response.

GET /profile/:username/friends

Get a user’s Roblox friends list. Endpoint
GET /api/v1/roblox/profile/:username/friends
curl "https://drain.lat/api/v1/roblox/profile/Builderman/friends" \
  -H "x-api-key: YOUR_API_KEY"
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. The friends endpoint may return an error for some accounts depending on their privacy settings.