Get images and their metadata

get /text/Image/List
This endpoint retrieves a list of images with their corresponding metadata. You can filter by storefront, language, or specific image IDs and optionally include the alt text update history.

Requirements

Authentication Required
Bearer access_token
Request Headers
Authorization: Bearer access_token
Parameter Name Type Description
storeId string, optional The storefront location identifier for the image. This helps differentiate images between different stores. Default is default.
language string, optional A language code to filter the images by language. It returns the alt text in the specified language.
images array[string], optional A list of image IDs. This allows you to fetch specific images if you know their IDs.
includeUpdateHistory boolean, optional If set to true, it includes the alt text update history in the response. Default is false.

Example API Request

Response

200
400
404
500
//Returns the metadata of the requested images, including their URLs, alt texts, and modification history (if requested).
//If any of the parameters are invalid.
//If the specified images are not found.
//The server encountered an error when processing the request.