rozod
    Preparing search index...

    Variable getBundlesThumbnailsConst Api Param

    getBundlesThumbnails: EndpointGeneric<
        {
            bundleIds: number[];
            format?: "Png"
            | "Webp";
            isCircular?: boolean;
            size?: "150x150" | "420x420";
        },
        {
            data: {
                imageUrl: string;
                state: | "Error"
                | "Completed"
                | "InReview"
                | "Pending"
                | "Blocked"
                | "TemporarilyUnavailable";
                targetId: number;
                version: string;
            }[];
        },
        undefined,
    > = ...

    GET https://thumbnails.roblox.com/v1/bundles/thumbnails Get bundle thumbnails for the given CSV of bundle ids bundleIds CSV for the bundle ids to get bundle thumbnails size The thumbnail size, formatted widthxheight format The thumbnail format isCircular The circle thumbnail output parameter, true or false