🟢Friends

Roblox Friends API Endpoints.

Get a list of followers of a speficied users.

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

Returns a list of users that follow the specified user.

Path Parameters

{
  "previousPageCursor": "string",
  "nextPageCursor": "string",
  "data": [
    {
      "isOnline": true,
      "presenceType": "Offline",
      "isDeleted": true,
      "friendFrequentRank": 0,
      "description": "string",
      "created": "2021-11-05T13:07:32.947Z",
      "isBanned": true,
      "externalAppDisplayName": "string",
      "id": 0,
      "name": "string",
      "displayName": "string"
    }
  ]
}

Get a list of a users friends.

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

Returns a list of friends.

Path Parameters

{
  "data": [
    {
      "isOnline": true,
      "presenceType": "Offline",
      "isDeleted": true,
      "friendFrequentRank": 0,
      "description": "string",
      "created": "2021-11-05T13:07:32.972Z",
      "isBanned": true,
      "externalAppDisplayName": "string",
      "id": 0,
      "name": "string",
      "displayName": "string"
    }
  ]
}

Get a list of users that the specified user is following.

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

Returns a list of users the user is following.

Path Parameters

{
  "previousPageCursor": "string",
  "nextPageCursor": "string",
  "data": [
    {
      "isOnline": true,
      "presenceType": "Offline",
      "isDeleted": true,
      "friendFrequentRank": 0,
      "description": "string",
      "created": "2021-11-05T13:07:32.963Z",
      "isBanned": true,
      "externalAppDisplayName": "string",
      "id": 0,
      "name": "string",
      "displayName": "string"
    }
  ]
}

Get the friends count of a specified user.

GET https://api.luiboard.com/roblox/users/${Id}/friends/count

Returns a users friends count.

Path Parameters

{
 "Err":null,
 "Data":{
   "count":0
   }
 }

Get the followers count of a specified user.

GET https://api.luiboard.com/roblox/users/${Id}/followers/count

Returns a users followers count.

Path Parameters

{
 "Err":null,
 "Data":{
   "count":0
   }
 }

Get the followings count of a specified user.

GET https://api.luiboard.com/roblox/users/${Id}/followings/count

Returns a users followings count.

Path Parameters

{
 "Err":null,
 "Data":{
   "count":0
   }
 }

Last updated