rozod
    Preparing search index...

    Variable getBundlesBundleidRecommendationsConst Api Param

    getBundlesBundleidRecommendations: EndpointGeneric<
        { bundleId: number; numItems?: number },
        {
            data: {
                bundleType: string;
                collectibleItemDetail: {
                    collectibleItemId: string;
                    collectibleItemType: 0 | 1 | 2;
                    collectibleProductId: string;
                    hasResellers: boolean;
                    lowestAvailableResaleItemInstanceId: string;
                    lowestAvailableResaleProductId: string;
                    lowestPrice: number;
                    lowestResalePrice: number;
                    offSaleDeadline: string;
                    price: number;
                    quantityLimitPerUser: number;
                    resaleRestriction: 0 | 1 | 2;
                    saleLocation: {
                        enabledUniverseIds: number[];
                        saleLocationType: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
                        saleLocationTypeId: number;
                        universeIds: number[];
                    };
                    saleStatus: 0
                    | 1
                    | 2
                    | 3
                    | 4;
                    totalQuantity: number;
                    unitsAvailable: number;
                };
                creator: {
                    hasVerifiedBadge: boolean;
                    id: number;
                    name: string;
                    type: string;
                };
                description: string;
                id: number;
                isRecolorable: boolean;
                itemRestrictions: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
                items: { id: number; name: string; owned: boolean; type: string }[];
                name: string;
                product: {
                    id: number;
                    isForSale: boolean;
                    isFree: boolean;
                    isPublicDomain: boolean;
                    noPriceText: string;
                    premiumPricing: {
                        premiumDiscountPercentage: number;
                        premiumPriceInRobux: number;
                    };
                    priceInRobux: number;
                    type: string;
                };
            }[];
        },
        undefined,
    > = ...

    GET https://catalog.roblox.com/v1/bundles/:bundleId/recommendations Gets recommendations for a given bundle, bundleId of 0 returns randomized bundles

    • Accepts both public and authenticated users. bundleId numItems The number of recommended items to return.