Fetching User Information by Username
Endpoint
GET /username/:usernameDescription
Retrieves detailed information and the avatar thumbnail for the specified Roblox username.
Parameters
:username(path parameter): The Roblox username you want to fetch information for.
Request Example
GET https://api.tazl.cc/username/tazldiedResponse
Success (200): Returns a JSON object containing user information and the avatar thumbnail URL.
Not Found (404): If the username is not found.
Error (500): There is an issue fetching the user information or the thumbnail.
Response Example
{
"userInfo": {
"description": "all your base are belong to us\n\ntazl.cc",
"created": "2016-01-20T21:30:42.93Z",
"isBanned": false,
"externalAppDisplayName": null,
"hasVerifiedBadge": false,
"id": 105602135,
"name": "tazldied",
"displayName": "tazl"
},
"thumbnailUrl": "https://tr.rbxcdn.com/30DAY-AvatarHeadshot-27BD6F25236A6FDA42EF527F99BB8525-Png/150/150/AvatarHeadshot/Png/noFilter"
}Notes
Ensure the username provided in the request is correct and exists on Roblox.
The
thumbnailUrlin the response provides a direct link to the user's avatar headshot image.You can see this this in action over at the getuser page on my main site.
Last updated
Was this helpful?