🟢Avatar

Roblox Avatar API Endpoints.

Get avatar infomation of a specified roblox player.

GET https://api.luiboard.com/roblox/users/{Id}/avatar

Returnss infomation about the roblox avatar.

Path Parameters

{
  "scales": {
    "height": 0,
    "width": 0,
    "head": 0,
    "depth": 0,
    "proportion": 0,
    "bodyType": 0
  },
  "playerAvatarType": "R6",
  "bodyColors": {
    "headColorId": 0,
    "torsoColorId": 0,
    "rightArmColorId": 0,
    "leftArmColorId": 0,
    "rightLegColorId": 0,
    "leftLegColorId": 0
  },
  "assets": [
    {
      "id": 0,
      "name": "string",
      "assetType": {
        "id": 0,
        "name": "string"
      },
      "currentVersionId": 0,
      "meta": {
        "order": 0,
        "puffiness": 0,
        "version": 0
      }
    }
  ],
  "defaultShirtApplied": true,
  "defaultPantsApplied": true,
  "emotes": [
    {
      "assetId": 0,
      "assetName": "string",
      "position": 0
    }
  ]
}

Get the outfits of a specified roblox player.

GET https://api.luiboard.com/roblox/users/{Id}/outfits

Returns a list of outfit data.

Path Parameters

Query Parameters

{
  "filteredCount": 0,
  "data": [
    {
      "id": 0,
      "name": "string",
      "isEditable": true
    }
  ],
  "total": 0
}

Get infomation about what a specified roblox player is wearing.

GET https://api.luiboard.com/roblox/users/{Id}/currently-wearing

Returns info about a users current outfit.

Path Parameters

{
  "assetIds": [
    0
  ]
}

Get infomation about a roblox outfit.

GET https://api.luiboard.com/roblox/outfits/{Id}/details

Returns infomation about the specified outfit.

Path Parameters

{
  "id": 0,
  "name": "string",
  "assets": [
    {
      "id": 0,
      "name": "string",
      "assetType": {
        "id": 0,
        "name": "string"
      },
      "currentVersionId": 0,
      "meta": {
        "order": 0,
        "puffiness": 0,
        "version": 0
      }
    }
  ],
  "bodyColors": {
    "headColorId": 0,
    "torsoColorId": 0,
    "rightArmColorId": 0,
    "leftArmColorId": 0,
    "rightLegColorId": 0,
    "leftLegColorId": 0
  },
  "scale": {
    "height": 0,
    "width": 0,
    "head": 0,
    "depth": 0,
    "proportion": 0,
    "bodyType": 0
  },
  "playerAvatarType": "string",
  "isEditable": true
}

Last updated