> ## Documentation Index
> Fetch the complete documentation index at: https://docs.autype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List temporary images

> List all non-expired temporary images for the organization.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/dev/images
openapi: 3.0.0
info:
  title: Autype Developer API
  description: >-
    Autype Developer API for programmatic document generation.


    ## Authentication

    All endpoints require an API key. Include it in the `X-API-Key` header or as
    a Bearer token.


    ## Rate Limiting

    API requests are rate-limited to 100 requests per minute per API key.


    ## Token Billing

    Rendering operations consume tokens from your organization's balance.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.autype.com
    description: Production
security: []
tags:
  - name: Temporary Images
    description: Upload and manage temporary images for document rendering
  - name: Render
    description: Render documents to PDF, DOCX, or ODT
  - name: Bulk Render
    description: Bulk document generation with variable substitution
  - name: Documents
    description: Document variable inspection
  - name: Projects
    description: List organization projects
paths:
  /api/v1/dev/images:
    get:
      tags:
        - developer-api
      summary: List temporary images
      description: List all non-expired temporary images for the organization.
      operationId: ImagesController_listTempImages_v1
      parameters: []
      responses:
        '200':
          description: List of temporary images
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TempImageListResponseDto'
        '401':
          description: Invalid or missing API key
      security:
        - api-key: []
components:
  schemas:
    TempImageListResponseDto:
      type: object
      properties:
        images:
          description: List of temporary images
          type: array
          items:
            $ref: '#/components/schemas/TempImageResponseDto'
        total:
          type: number
          description: Total count of temporary images
          example: 5
      required:
        - images
        - total
    TempImageResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the temporary image
          example: 550e8400-e29b-41d4-a716-446655440000
        filename:
          type: string
          description: Original filename of the uploaded image
          example: company-logo.png
        mimeType:
          type: string
          description: MIME type of the image
          example: image/png
        sizeBytes:
          type: number
          description: Size of the image in bytes
          example: 102400
        refPath:
          type: string
          description: Reference path to use in document JSON (use this in image src)
          example: /temp-image/550e8400-e29b-41d4-a716-446655440000
        expiresAt:
          format: date-time
          type: string
          description: Expiration time of the temporary image
          example: '2024-01-16T12:00:00.000Z'
        createdAt:
          format: date-time
          type: string
          description: Creation time of the temporary image
          example: '2024-01-15T12:00:00.000Z'
      required:
        - id
        - filename
        - mimeType
        - sizeBytes
        - refPath
        - expiresAt
        - createdAt
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key (starts with ak_...)

````