Skip to content
superstyle

List Images

Retrieve a list of all images generated by your API key, including try-on results and style suggestions.

GET /images

No request body. Authentication via X-API-Key header.

Terminal window
curl https://mcll3bnfubyazfg6wekv3xc6fi0dgpyk.lambda-url.us-east-1.on.aws/images \
-H "X-API-Key: YOUR_API_KEY"
FieldTypeDescription
imagesarrayList of image records
FieldTypeDescription
image_idstringUnique image identifier (e.g. "img_a1b2c3...")
image_urlstringDirect URL to the image
mime_typestringImage MIME type (e.g. "image/jpeg")
categorystringImage category ("try-on", "style-me")
endpointstringEndpoint that generated this image
created_atstringISO 8601 creation timestamp
persistentbooleanWhether the image is stored permanently
{
"images": [
{
"image_id": "img_a1b2c3d4e5f6a1b2c3d4e5f6",
"image_url": "https://superstyle-user-images.s3.us-east-1.amazonaws.com/usr_123/try-on/20260228T153000Z_a1b2c3.jpg",
"mime_type": "image/jpeg",
"category": "try-on",
"endpoint": "/try_on_outfit",
"created_at": "2026-02-28T15:30:00.000Z",
"persistent": true
},
{
"image_id": "img_d4e5f6a1b2c3d4e5f6a1b2c3",
"image_url": "https://superstyle-user-images.s3.us-east-1.amazonaws.com/temp/usr_123/style-me/20260228T140000Z_d4e5f6.jpg",
"mime_type": "image/jpeg",
"category": "style-me",
"endpoint": "/style_me",
"created_at": "2026-02-28T14:00:00.000Z",
"persistent": false
}
]
}
  • This endpoint is free and unlimited — it does not count toward rate limits
  • Non-persistent images (where persistent: false) have URLs that expire after 24 hours
  • Images are returned newest-first
  • Only images generated by your API keys are returned