Thumbnails Resizer v1
Reference for the Thumbnails Resizer v1 endpoints on Roblox.
Base URL: https://thumbnailsresizer.roblox.com
Endpoints
Section titled “Endpoints”| Method | Path | Name |
|---|---|---|
GET | /v1/resize/:hash/:width/:height/:type/:format/:filterType | getResizeHashWidthHeightTypeFormatFiltertype |
GET | /v1/secureresize/:thumbPrint/:hash/:width/:height/:type/:format/:filterType | getSecureresizeThumbprintHashWidthHeightTypeFormatFiltertype |
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? */});Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
hash | string | Yes | Hash of larger thumbnail |
width | integer | Yes | Desired width of thumbnail |
height | integer | Yes | Desired height of thumbnail |
type | string | Yes | Thumbnail Type |
format | string | Yes | Desired image format of the thumbnail |
filterType | string | Yes | E.g. is output circular |
shouldModify | boolean? | No |
Response
Section titled “Response”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? */});Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
thumbPrint | string | Yes | The thumbPrint that represents the key version |
hash | string | Yes | Hash of larger thumbnail |
width | integer | Yes | Desired width of thumbnail |
height | integer | Yes | Desired height of thumbnail |
type | string | Yes | Thumbnail Type |
format | string | Yes | Desired image format of the thumbnail |
filterType | string? | No | E.g. is output circular |
Response
Section titled “Response”Type: unknown