> ## Documentation Index
> Fetch the complete documentation index at: https://docs.luly.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={true}>
  Your API key for authentication.
</ParamField>

### Response

<ResponseField name="folders" type="array">
  The unique identifier of the folder.
</ResponseField>

<ResponseField name="folders[].id" type="string">
  A message describing the result of the operation.
</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
  {
    "status": "success",
    "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
  }

  ```
</ResponseExample>
