What it does
Thumbnail Generator creates resized thumbnails from either an uploaded image or a source image URL. Send an image plus width and height, and get back a thumbnail as a binary file or a signed download URL.
Use the multipart endpoints when you already have the image in your request body, or the URL endpoints when you want the API to fetch the source image for you. You can also set output, preserve_format, and auto_orientation to control the result. preserve_format keeps the original image format when possible, and auto_orientation helps correct images that include rotation metadata.
This is useful anywhere you need consistent preview images: product cards, gallery grids, email assets, CMS previews, or social sharing thumbnails. The service is designed around simple image transformation inputs and returns either the thumbnail content directly or a URI in data for signed-link workflows.
Thumbnail Generator keeps the interface narrow: image source, dimensions, and a few output controls. That makes it easy to wire into upload pipelines, asset processing jobs, or backend services that need predictable thumbnail output without extra image-handling logic.