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

# List Files

> List uploaded files for your organization.

Returns a paginated list of files that have been uploaded to your organization's storage,
with optional filtering by folder path.

**Query Parameters:**
- **limit**: Maximum number of files to return (default: 50, max: 100)
- **folder**: Filter files by folder path (e.g., "proteins/structures")

**Response includes:**
- File metadata (name, size, upload date)
- File status and content type
- Organization and folder information



## OpenAPI

````yaml openapi.json get /files
openapi: 3.1.0
info:
  title: Nano Helix API
  description: Protein AI model API platform.
  contact:
    name: Nano Helix Support
    email: support@nanohelix.ai
  license:
    name: Commercial License
  version: 1.0.0
servers: []
security: []
paths:
  /files:
    get:
      tags:
        - File Management
      summary: List Files
      description: >-
        List uploaded files for your organization.


        Returns a paginated list of files that have been uploaded to your
        organization's storage,

        with optional filtering by folder path.


        **Query Parameters:**

        - **limit**: Maximum number of files to return (default: 50, max: 100)

        - **folder**: Filter files by folder path (e.g., "proteins/structures")


        **Response includes:**

        - File metadata (name, size, upload date)

        - File status and content type

        - Organization and folder information
      operationId: list_files_files_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            title: Limit
        - name: folder
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Folder
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````