Roblox User Info Fetcher

Combined endpoints, in one.
System Status

Live uptime data from UptimeRobot.

Try it live
Click "Fetch" to see JSON response

This calls the real API – includes groups, avatar, etc. (default options)

API Endpoint
POST https://rbx-group-fetcher.dimasuperotovorot3000.workers.dev/

All requests must be POST with JSON or form data. Browser GETs get redirected here.

Optional parameters
userId username groupId includeAvatar includePresence includeFriendsCount includeFollowersCount includeFollowingCount includeGroups

Booleans accept true/false, "true"/"false", 1/0, "on"/"off".

Example request
curl -X POST https://rbx-group-fetcher.dimasuperotovorot3000.workers.dev/ \
  -H "Content-Type: application/json" \
  -d '{"username": "PapaAleks11", "includeAvatar": true}'
🔽 Click to see example response (abridged)
{
  "id": 1478795848,
  "username": "PapaAleks11",
  "displayName": "Dima",
  "created": "2020-02-27T07:16:28.267Z",
  "profileUrl": "https://www.roblox.com/users/1478795848/profile",
  "description": "oh hi!",
  "avatarUrl": "https://...",
  "groups": [ ... 40+ groups ... ]
}

Open source under the MIT License – because sharing is caring.

GitHub repo