Retrieve thumbnails for specific assets using the item-thumbnails endpoint.
By default, the API returns a large (420x420) image. To request a small (110x110) image, include imageSize:small in the params object.
Both the asset and avatar thumbnail APIs support JSONP for client-side embedding.
// Requesting a large thumbnail (default)
https://www.roblox.com/item-thumbnails?params=[{assetId:1818}]
// Requesting a small thumbnail (110x110)
https://www.roblox.com/item-thumbnails?params=[{assetId:1818,imageSize:small}]
// Example using JSONP with jQuery
$.getJSON('https://www.roblox.com/item-thumbnails?params=[{assetId:1818}]&jsoncallback=?', function(json) {
alert(json[0].name);
});