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

# List Folders API

> Retrieve a list of all test folders in your Autonoma account.



## OpenAPI

````yaml get /folder
openapi: 3.0.3
info:
  title: Autonoma API
  description: |
    API for managing test runs and test definitions in the Autonoma platform.

    **Important Note:** Media URLs (images, videos) expire after 1 hour.
  version: 1.0.0
  contact:
    name: Autonoma Support
servers:
  - url: https://autonoma.app/api
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /folder:
    get:
      summary: List Folders
      description: Retrieve a list of folder definitions with optional pagination
      parameters:
        - name: limit
          in: query
          description: Maximum number of folders to return
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            example: 20
        - name: offset
          in: query
          description: Number of folders to skip for pagination
          required: false
          schema:
            type: integer
            minimum: 0
            example: 0
      responses:
        '200':
          description: List of Folders
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Folder'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidCredentialsError'
      security:
        - ApiKeyAuth: []
          ApiSecretAuth: []
components:
  schemas:
    Folder:
      type: object
      properties:
        id:
          type: string
          example: cmbsgljfr00fd060153r9x8ek
        name:
          type: string
          example: Draft Folder
        created_at:
          type: string
          format: date-time
          example: '2025-06-11T21:25:47.559Z'
        updated_at:
          type: string
          format: date-time
          example: '2025-06-11T21:25:47.559Z'
        crontab:
          type: string
          example: 0 0 * * *
        tests:
          type: array
          items:
            $ref: '#/components/schemas/FolderTest'
    InvalidCredentialsError:
      type: object
      properties:
        error:
          type: string
          example: Unauthorized
        message:
          type: string
          example: Invalid authentication credentials
    FolderTest:
      type: object
      properties:
        id:
          type: string
          example: cmbsgljfr00fd060153r9x8ek
        name:
          type: string
          example: New Test 2025-06-11T21:25:47.442Z
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: autonoma-client-id
      description: Client ID for authentication
    ApiSecretAuth:
      type: apiKey
      in: header
      name: autonoma-client-secret
      description: Client secret for authentication

````