🟢Games

Roblox Games API Endpoints.

Get a list of a users favorite games.

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

Returns a list of a users favorite games.

Path Parameters

Query Parameters

{
  "previousPageCursor": "string",
  "nextPageCursor": "string",
  "data": [
    {
      "id": 0,
      "name": "string",
      "description": "string",
      "creator": {
        "id": 0,
        "type": "User",
        "name": "string"
      },
      "rootPlace": {
        "id": 0,
        "type": "Image",
        "name": "string"
      },
      "created": "2021-11-05T13:36:36.482Z",
      "updated": "2021-11-05T13:36:36.482Z",
      "placeVisits": 0
    }
  ]
}

Get a list of games created by a group.

GET https://api.luiboard.com/roblox/groups/${Id}/games

Returns a list of games by a group.

Path Parameters

Query Parameters

{
  "previousPageCursor": "string",
  "nextPageCursor": "string",
  "data": [
    {
      "id": 0,
      "name": "string",
      "description": "string",
      "creator": {
        "id": 0,
        "type": "User",
        "name": "string"
      },
      "rootPlace": {
        "id": 0,
        "type": "Image",
        "name": "string"
      },
      "created": "2021-11-05T13:36:36.451Z",
      "updated": "2021-11-05T13:36:36.451Z",
      "placeVisits": 0
    }
  ]
}

Get a list of games created by a user.

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

Returns a list of games by a user.

Path Parameters

Query Parameters

{
  "previousPageCursor": "string",
  "nextPageCursor": "string",
  "data": [
    {
      "id": 0,
      "name": "string",
      "description": "string",
      "creator": {
        "id": 0,
        "type": "User",
        "name": "string"
      },
      "rootPlace": {
        "id": 0,
        "type": "Image",
        "name": "string"
      },
      "created": "2021-11-05T13:36:36.497Z",
      "updated": "2021-11-05T13:36:36.497Z",
      "placeVisits": 0
    }
  ]
}

Get the server list of a game.

GET https://api.luiboard.com/roblox/games/${Id}/servers

Returns a list of servers.

Path Parameters

Query Parameters

{
  "previousPageCursor": "string",
  "nextPageCursor": "string",
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "maxPlayers": 0,
      "playing": 0,
      "playerTokens": [
        "string"
      ],
      "fps": 0,
      "ping": 0,
    }
  ]
}

Last updated