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

# Get Folders

Retrieve a list of folders used for organizing studies.


## OpenAPI

````yaml GET /api/v1/folders
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.getversive.com
security: []
paths:
  /api/v1/folders:
    get:
      tags:
        - Folders
      summary: Get Folders
      operationId: get_folders_api_v1_folders_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
              example:
                - id: folder_123
                  name: My Folder
                  created_at: '2024-01-01T00:00:00Z'
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````