Variable getGamesUniverseidThumbnailsConst

getGamesUniverseidThumbnails: EndpointGeneric<{
    format:
        | undefined
        | "Png"
        | "Jpeg"
        | "Webp";
    isCircular: undefined | boolean;
    size:
        | undefined
        | "256x144"
        | "384x216"
        | "480x270"
        | "576x324"
        | "768x432";
    thumbnailIds: number[];
    universeId: number;
}, {
    data: {
        imageUrl: string;
        state:
            | "Error"
            | "Completed"
            | "InReview"
            | "Pending"
            | "Blocked"
            | "TemporarilyUnavailable";
        targetId: number;
        version: string;
    }[];
}, any> = ...

GET https://thumbnails.roblox.com/v1/games/:universeId/thumbnails

Fetches game thumbnail URLs for a list of universes' thumbnail ids. Ids that do not correspond to a valid thumbnail will be filtered out.

The thumbnail size, formatted widthxheight

The thumbnail format

The circle thumbnail output parameter, true or false