Thanks to visit codestin.com
Credit goes to github.com

Skip to content

deeegen/BloxRAT

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

louie

Blox R.A.T.

A simple little API for me to test Vercel, and for you to get whatever basic info you need about someone via the Roblox API. Say "thanks" to Louie!

R.A.T. stands for Roblox Avatar Thumbnail.

Available Domains:

  • bloxrat.vercel.app
  • bloxrat.kckarnige.online

Examples

Image Example (Default)

https://bloxrat.vercel.app/api?userId=154248006&type=avatar-headshot&size=150&isCircular=false&responseType=image

image example

JSON Example

https://bloxrat.vercel.app/api?userId=154248006&type=avatar-headshot&size=150&isCircular=false&responseType=json

{
  "userId": 154248006,
  "username": "kayos155",
  "isBanned": false,
  "profileInfo": {
    "created": "2016-08-20T13:07:17.787Z",
    "hasVerifiedBadge": false,
    "displayName": "Ralsei Deltarune",
    "description": "delta peak"
  },
  "avatarThumbnail": {
    "imageUrl": "https://tr.rbxcdn.com/30DAY-AvatarHeadshot-3713E4E32738A082EE0E30300530AC8C-Png/150/150/AvatarHeadshot/Png/noFilter",
    "type": "avatar-headshot",
    "size": "150",
    "isCircular": "false",
    "format": "Png"
  }
}

Parameters

userId (String):

The Roblox user's ID. This can be found in the profile's URL.

https://www.roblox.com/users/154248006/profile


type (String):

Sets what type of avatar thumbnail is returned as the image.

Options: avatar (default), avatar-bust, avatar-headshot.


size (Integer):

Sets what size the returned image is. To get a full list of supported sizes, make sure to check the official API docs, linked at the end. The options listed are sizes supported by all thumbnail types.

Options: 48, 60, 75, 100, 150, 180, 420 (default), 720


isCircular (Boolean):

Sets whether or not the returned image is circular.

Options: true, false (default)


format (String):

Sets what file format the returned image is. jpeg format is not supported for avatar-bust thumbnails.

Options: png (default), webp, jpeg


responseType (String):

Sets whether to return an image for thing such as <img> elements, or JSON which includes the image URL as well as a bit more info about the user.

Options: image (default), json


For more detailed information on the different parameters and such, check out the official Roblox avatar thumbnail v1 docs: https://create.roblox.com/docs/cloud/features/avatars#/default/get_v1_users_avatar

About

Get whatever Roblox user info you need. Say "thanks" to Louie!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.1%
  • HTML 1.9%