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

# List contact list folders

> List contact list folders. By default this returns only root folders. Use `includeChildren=true` to return nested folders too.

Responses include direct Enginy app URLs when available. Each returned folder includes an `appUrl` field. MCP agents should return those URLs to users whenever they are present in the response.

    > **Required scope:** `LISTS_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/folders/contacts
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/folders/contacts:
    get:
      tags:
        - Lists
      summary: List contact list folders
      description: >-
        List contact list folders. By default this returns only root folders.
        Use `includeChildren=true` to return nested folders too.


        Responses include direct Enginy app URLs when available. Each returned
        folder includes an `appUrl` field. MCP agents should return those URLs
        to users whenever they are present in the response.

            > **Required scope:** `LISTS_READ`
            >
            > **Rate limit:** 100 requests per minute
      parameters:
        - schema:
            type: string
            enum:
              - 'true'
              - 'false'
            description: When `true`, includes nested folders instead of only root folders.
          required: false
          description: When `true`, includes nested folders instead of only root folders.
          name: includeChildren
          in: query
        - schema:
            type: string
            enum:
              - 'true'
              - 'false'
            description: When `true`, includes recursive subfolder and list counts.
          required: false
          description: When `true`, includes recursive subfolder and list counts.
          name: includeRecursiveCounts
          in: query
      responses:
        '200':
          description: Folders retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        name:
                          type: string
                        parentId:
                          type:
                            - number
                            - 'null'
                        type:
                          type: string
                          enum:
                            - CONTACTS
                            - COMPANIES
                        appUrl:
                          type: string
                          format: uri
                        createdAt:
                          type: string
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        listsCount:
                          type: number
                        subfoldersCount:
                          type: number
                        totalSubfoldersCount:
                          type: number
                        totalListsCount:
                          type: number
                      required:
                        - id
                        - name
                        - parentId
                        - type
                        - appUrl
                        - createdAt
                        - updatedAt
                        - listsCount
                        - subfoldersCount
                required:
                  - status
                  - message
                  - data
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````