🟢Catalog

Roblox Catalog API Endpoints.

Get infomation about a specified Roblox Bundle.

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

Returns infomation about a roblox bundle.

Path Parameters

NameTypeDescription

Id*

number

The Roblox Bundle Id.

{
  "id": 0,
  "name": "string",
  "description": "string",
  "bundleType": "string",
  "items": [
    {
      "owned": true,
      "id": 0,
      "name": "string",
      "type": "string"
    }
  ],
  "creator": {
    "id": 0,
    "name": "string",
    "type": "string"
  },
  "product": {
    "id": 0,
    "type": "string",
    "isPublicDomain": true,
    "isForSale": true,
    "priceInRobux": 0,
    "isFree": true,
    "noPriceText": "string",
    "premiumPricing": {
      "premiumDiscountPercentage": 0,
      "premiumPriceInRobux": 0
    }
  }
}

Get the favorite count of a specified Roblox Bundle.

GET https://api.luiboard.com/roblox/bundles/{Id}/favorites

Returns how many favorites a bundle has.

Path Parameters

NameTypeDescription

Id*

number

Roblox Bundle Id.

{
 "Err":null,
 "Data":240271
}

Get the favorite count of a specified Roblox Asset.

GET https://api.luiboard.com/roblox/assets/${Id}/favorites

Returns how many favorites an asset has.

Path Parameters

NameTypeDescription

Id*

number

The Roblox Asset Id.

{
 "Err":null,
 "Data":240271
}

Gets recomedations of a specified Roblox Bundle.

GET https://api.luiboard.com/roblox/bundles/${Id}/recomendations

Returns a list of bundle recomendations.

Path Parameters

NameTypeDescription

Id*

number

Roblox Bundle Id.

Query Parameters

NameTypeDescription

numItems

number

The max amount of items to return.

{
  "data": [
    {
      "id": 0,
      "name": "string",
      "description": "string",
      "bundleType": "string",
      "items": [
        {
          "owned": true,
          "id": 0,
          "name": "string",
          "type": "string"
        }
      ],
      "creator": {
        "id": 0,
        "name": "string",
        "type": "string"
      },
      "product": {
        "id": 0,
        "type": "string",
        "isPublicDomain": true,
        "isForSale": true,
        "priceInRobux": 0,
        "isFree": true,
        "noPriceText": "string",
        "premiumPricing": {
          "premiumDiscountPercentage": 0,
          "premiumPriceInRobux": 0
        }
      }
    }
  ]
}

Last updated