Retrieve conversations pending AI analysis
GET
/
conversations
/
ai
/
pending-analysis
Retrieve conversations pending AI analysis
curl --request GET \
--url http://localhost:3002/api/v1/conversations/ai/pending-analysis \
--header 'x-ai-tool-secret: <x-ai-tool-secret>'const options = {method: 'GET', headers: {'x-ai-tool-secret': '<x-ai-tool-secret>'}};
fetch('http://localhost:3002/api/v1/conversations/ai/pending-analysis', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/conversations/ai/pending-analysis"
headers = {"x-ai-tool-secret": "<x-ai-tool-secret>"}
response = requests.get(url, headers=headers)
print(response.text)Headers
Response
200
Successfully retrieved pending analysis list
Last modified on July 18, 2026
⌘I
Retrieve conversations pending AI analysis
curl --request GET \
--url http://localhost:3002/api/v1/conversations/ai/pending-analysis \
--header 'x-ai-tool-secret: <x-ai-tool-secret>'const options = {method: 'GET', headers: {'x-ai-tool-secret': '<x-ai-tool-secret>'}};
fetch('http://localhost:3002/api/v1/conversations/ai/pending-analysis', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/conversations/ai/pending-analysis"
headers = {"x-ai-tool-secret": "<x-ai-tool-secret>"}
response = requests.get(url, headers=headers)
print(response.text)