> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gptchatbot.it/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Session History

> Retrieve the session's chat log as a simple text transcript.

### Path

<ParamField path="uuid" type="string" required>
  Session uuid
</ParamField>

### Response

<ResponseField name="Plain Text" type="string" />

<RequestExample>
  ```bash Curl theme={null}
  curl --location --request GET 'https://app.gptchatbot.it/api/v1/session/{uuid}/messages/plain-text' \
  --header 'Authorization: Bearer <token>'
  ```

  ```py Python theme={null}
  import requests

  uuid = '<session-uuid>'
  url = f'https://app.gptchatbot.it/api/v1/session/{uuid}/messages/plain-text'
  headers = {
      'Authorization': 'Bearer <token>'
  }

  response = requests.get(url, headers=headers)

  if response.status_code == 200:
      print("Request successful!")
      print(response.json())
  else:
      print("Request failed with status code:", response.status_code)
      print(response.text)
  ```

  ```ts JavaScript theme={null}
  const axios = require("axios");

  const uuid = "<session-uuid>";
  const url = `https://app.gptchatbot.it/api/v1/session/${uuid}/messages/plain-text`;
  const headers = {
    Authorization: "Bearer <token>",
  };

  axios
    .get(url, { headers })
    .then((response) => {
      console.log("Request successful!");
      console.log(response);
    })
    .catch((error) => {
      console.error("Request failed:", error);
    });
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
      User: [query]
      Assistant: [response]
      User: [query]
      Assistant: [response]
  ```
</ResponseExample>
