rozod
    Preparing search index...

    Variable getBundlesBundleidRecommendationsConst Api Param

    getBundlesBundleidRecommendations: EndpointGeneric<
        { bundleId: number; numItems?: number },
        {
            data: {
                bundleType: string;
                collectibleItemDetail: {
                    collectibleItemId: string;
                    collectibleItemType: "Invalid" | "Limited" | "NonLimited";
                    collectibleProductId: string;
                    hasResellers: boolean;
                    lowestAvailableResaleItemInstanceId: string;
                    lowestAvailableResaleProductId: string;
                    lowestPrice: number;
                    lowestResalePrice: number;
                    offSaleDeadline: string;
                    price: number;
                    quantityLimitPerUser: number;
                    resaleRestriction: "Disabled" | "None" | "Invalid";
                    saleLocation: {
                        enabledUniverseIds: number[];
                        saleLocationType:
                            | "NotApplicable"
                            | "ShopOnly"
                            | "MyExperiencesOnly"
                            | "ShopAndMyExperiences"
                            | "ExperiencesById"
                            | "ShopAndAllExperiences"
                            | "ExperiencesDevApiOnly"
                            | "ShopAndExperiencesById";
                        saleLocationTypeId: number;
                        universeIds: number[];
                    };
                    saleStatus: "Draft"
                    | "Invalid"
                    | "OffSale"
                    | "OnSale"
                    | "PendingSale";
                    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: {
                    assetType: number;
                    id: number;
                    name: string;
                    owned: boolean;
                    supportsHeadShapes: 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.