List Conversation Messages
curl --request GET \
--url https://api.bey.dev/v1/conversations/{id}/messages \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bey.dev/v1/conversations/{id}/messages"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bey.dev/v1/conversations/{id}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"message": "<string>",
"sent_at": "<string>",
"sender": "ai"
}
]Agent Conversations
List Conversation Messages
List the transcribed messages of a conversation.
Returns the conversation transcript in chronological order, with each message attributed to either the agent or the user.
GET
/
v1
/
conversations
/
{id}
/
messages
List Conversation Messages
curl --request GET \
--url https://api.bey.dev/v1/conversations/{id}/messages \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bey.dev/v1/conversations/{id}/messages"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bey.dev/v1/conversations/{id}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"message": "<string>",
"sent_at": "<string>",
"sender": "ai"
}
]Authorizations
Your Beyond Presence API Key.
Path Parameters
Conversation ID.
Was this page helpful?