Skip to content

Thumbnails Resizer v1

Reference for the Thumbnails Resizer v1 endpoints on Roblox.

Base URL: https://thumbnailsresizer.roblox.com

MethodPathName
GET/v1/resize/:hash/:width/:height/:type/:format/:filterTypegetResizeHashWidthHeightTypeFormatFiltertype
GET/v1/secureresize/:thumbPrint/:hash/:width/:height/:type/:format/:filterTypegetSecureresizeThumbprintHashWidthHeightTypeFormatFiltertype

getResizeHashWidthHeightTypeFormatFiltertype

Section titled “getResizeHashWidthHeightTypeFormatFiltertype”

GET /v1/resize/:hash/:width/:height/:type/:format/:filterType

Resizes larger thumbnails to specified size and format

Usage
import { fetchApi } from 'rozod';
import { getResizeHashWidthHeightTypeFormatFiltertype } from 'rozod/lib/endpoints/thumbnailsresizerv1';
const data = await fetchApi(getResizeHashWidthHeightTypeFormatFiltertype, {
hash: /* string */,
width: /* integer */,
height: /* integer */,
type: /* string */,
format: /* string */,
filterType: /* string */,
shouldModify: /* boolean? */
});
NameTypeRequiredDescription
hashstringYesHash of larger thumbnail
widthintegerYesDesired width of thumbnail
heightintegerYesDesired height of thumbnail
typestringYesThumbnail Type
formatstringYesDesired image format of the thumbnail
filterTypestringYesE.g. is output circular
shouldModifyboolean?No

Type: unknown


getSecureresizeThumbprintHashWidthHeightTypeFormatFiltertype

Section titled “getSecureresizeThumbprintHashWidthHeightTypeFormatFiltertype”

GET /v1/secureresize/:thumbPrint/:hash/:width/:height/:type/:format/:filterType

Decrypts and Resizes larger thumbnails to specified size and format

Usage
import { fetchApi } from 'rozod';
import { getSecureresizeThumbprintHashWidthHeightTypeFormatFiltertype } from 'rozod/lib/endpoints/thumbnailsresizerv1';
const data = await fetchApi(getSecureresizeThumbprintHashWidthHeightTypeFormatFiltertype, {
thumbPrint: /* string */,
hash: /* string */,
width: /* integer */,
height: /* integer */,
type: /* string */,
format: /* string */,
filterType: /* string? */
});
NameTypeRequiredDescription
thumbPrintstringYesThe thumbPrint that represents the key version
hashstringYesHash of larger thumbnail
widthintegerYesDesired width of thumbnail
heightintegerYesDesired height of thumbnail
typestringYesThumbnail Type
formatstringYesDesired image format of the thumbnail
filterTypestring?NoE.g. is output circular

Type: unknown