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

# List uploaded images

> List images stored by this Presenton instance.

[Read the files and content guide](/user-guide/api-and-automation/files-and-content).



## OpenAPI

````yaml /archive/v0.9.0-beta/openapi/self-hosted.json get /api/v1/ppt/images/uploaded
openapi: 3.1.0
info:
  title: Presenton Self-hosted API
  version: v0.9.0-beta
  description: Supported public API served by a self-hosted Presenton deployment.
servers:
  - url: http://localhost:5001
    description: Local self-hosted instance
security: []
tags:
  - name: Presentations
    description: Generate and manage presentations.
  - name: Files and media
    description: Upload source files and images.
  - name: Templates and design
    description: Select reusable presentation designs.
  - name: Async and webhooks
    description: Monitor background work and receive events.
paths:
  /api/v1/ppt/images/uploaded:
    get:
      tags:
        - Images
      summary: List uploaded images
      description: >-
        List images stored by this Presenton instance.


        [Read the files and content
        guide](/user-guide/api-and-automation/files-and-content).
      operationId: get_uploaded_images_api_v1_ppt_images_uploaded_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - BasicAuth: []
      externalDocs:
        description: Read the files and content guide
        url: /user-guide/api-and-automation/files-and-content
components:
  responses:
    Unauthorized:
      description: Authentication is missing or invalid.
    ServerError:
      description: Presenton or one of its configured dependencies failed.
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic

````