> ## 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.

# Create Folder

> Creates a new folder for the authenticated user.

### Headers

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

### Body Parameters

<ParamField body="name" type="string" required>
  The name of the new folder.
</ParamField>

<ParamField body="parent_folder_id" type="string">
  The ID of the parent folder, if creating a subfolder.
</ParamField>

### Response

<ResponseField name="folder_id" type="string">
  The unique identifier of the newly created folder.
</ResponseField>

<ResponseField name="name" type="string">
  The name of the newly created folder.
</ResponseField>

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

<ResponseExample>
  ```json Response theme={null}
  {
    "folder_id": "new_folder_123",
    "name": "New Folder",
    "parent_folder_id": null
  }
  ```
</ResponseExample>

***

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