rozod
    Preparing search index...

    Variable getPlacesGameiconsConst Api Param

    getPlacesGameicons: EndpointGeneric<
        {
            format?: "Png"
            | "Jpeg"
            | "Webp";
            isCircular?: boolean;
            placeIds: number[];
            returnPolicy?:
                | "PlaceHolder"
                | "ForcePlaceHolder"
                | "AutoGenerated"
                | "ForceAutoGenerated";
            size?: "50x50"
            | "150x150"
            | "420x420"
            | "512x512"
            | "128x128"
            | "256x256";
        },
        {
            data: {
                imageUrl: string;
                state: | "Error"
                | "Completed"
                | "InReview"
                | "Pending"
                | "Blocked"
                | "TemporarilyUnavailable";
                targetId: number;
                version: string;
            }[];
        },
        undefined,
    > = ...

    GET https://thumbnails.roblox.com/v1/places/gameicons Fetches game icon URLs for a list of places. Ids that do not correspond to a valid place will be filtered out. placeIds The place ids. returnPolicy Optional policy to use in selecting game icon to return (default = PlaceHolder). size The thumbnail size, formatted widthxheight format The thumbnail format isCircular The circle thumbnail output parameter, true or false