> ## 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 Pathways in Folder

> Retrieves all pathways within a specific folder for the authenticated user.

### Headers

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

### Path Parameters

<ParamField path="folder_id" type="string" required={true}>
  The ID of the folder to retrieve pathways from.
</ParamField>

### Response

<ResponseField name="pathways" type="array">
  An array of pathway objects within the specified folder.
</ResponseField>

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

<ResponseField name="pathways[].name" type="string">
  The name of the pathway.
</ResponseField>

<ResponseField name="pathways[].description" type="string">
  The description of the pathway.
</ResponseField>

<ResponseField name="pathways[].created_at" type="string">
  The creation date and time of the pathway.
</ResponseField>

<ResponseExample>
  ```json Response
  {
    "status": "success",
    "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
  }

  ```
</ResponseExample>
