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

# Pathway Chat

> Get conversation history for a pathway chat.

### Headers

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

### Path Parameters

<ParamField path="id" type="uuid" required>
  The chat ID created from the /pathway/chat/create endpoint.
</ParamField>

### Response

<ResponseField name="errors" type="array">
  List of errors or null.
</ResponseField>

<ResponseField name="data" type="array">
  Message objects for the conversation history.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
      data: [
          {
              "role": "user",
              "content": "message"
          },
          ... // more messages
      ]
  }
  ```
</ResponseExample>

***

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