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

# Get All Folders

> Retrieves all folders for the authenticated user, including folder ID, name, and parent folder ID.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Response

<ResponseField name="folders" type="array">
  An array of folder objects.
</ResponseField>

<ResponseField name="folders[].id" type="string">
  The unique identifier of the folder.
</ResponseField>

<ResponseField name="folders[].name" type="string">
  The name of the folder.
</ResponseField>

<ResponseField name="folders[].parent_folder_id" type="string">
  The ID of the parent folder, if applicable.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "folders": [
      {
        "id": "folder_123",
        "name": "My Folder",
        "parent_folder_id": null
      },
      {
        "id": "folder_456",
        "name": "Subfolder",
        "parent_folder_id": "folder_123"
      }
    ]
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
