Retrieves a list of all generated images with their metadata.
GET
/images
curl \
--request GET 'https://api.huy-devops.site/api/images' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"code": 200,
"message": "string",
"data": [
{
"id": "string",
"originalFilename": "string",
"url": "https://example.com",
"mediaType": "string",
"fileSize": 42,
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z"
}
]
}
Response examples (500)
{
"success": false,
"code": 42,
"errorCode": "string",
"message": "string",
"timestamp": "2025-05-04T09:42:00Z"
}