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

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

### Headers

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

### Path Parameters

<ParamField path="folder_id" type="string" required>
  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 theme={null}
  {
    "pathways": [
      {
        "id": "pathway_123",
        "name": "My Pathway",
        "description": "A sample pathway",
        "created_at": "2024-03-15T12:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>

***

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