Skip to main content
GET
/
api
/
v1
/
dev
/
images
List temporary images
curl --request GET \
  --url https://api.autype.com/api/v1/dev/images \
  --header 'X-API-Key: <api-key>'
{
  "images": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "filename": "company-logo.png",
      "mimeType": "image/png",
      "sizeBytes": 102400,
      "refPath": "/temp-image/550e8400-e29b-41d4-a716-446655440000",
      "expiresAt": "2024-01-16T12:00:00.000Z",
      "createdAt": "2024-01-15T12:00:00.000Z"
    }
  ],
  "total": 5
}

Authorizations

X-API-Key
string
header
required

API Key (starts with ak_...)

Response

List of temporary images

images
object[]
required

List of temporary images

total
number
required

Total count of temporary images

Example:

5