Get conversation history list for current widget session
GET
Get conversation history list for current widget session
Headers
Response
200
Conversation history list retrieved successfully
Last modified on July 17, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
InteraOne is open source — star or contribute on GitHub.
curl --request GET \
--url http://localhost:3002/api/v1/widget/conversations \
--header 'x-widget-token: <x-widget-token>'const options = {method: 'GET', headers: {'x-widget-token': '<x-widget-token>'}};
fetch('http://localhost:3002/api/v1/widget/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/widget/conversations"
headers = {"x-widget-token": "<x-widget-token>"}
response = requests.get(url, headers=headers)
print(response.text)Conversation history list retrieved successfully
curl --request GET \
--url http://localhost:3002/api/v1/widget/conversations \
--header 'x-widget-token: <x-widget-token>'const options = {method: 'GET', headers: {'x-widget-token': '<x-widget-token>'}};
fetch('http://localhost:3002/api/v1/widget/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/widget/conversations"
headers = {"x-widget-token": "<x-widget-token>"}
response = requests.get(url, headers=headers)
print(response.text)