Headers
Your API key for authentication.
Path Parameters
The chat ID created from the /pathway/chat/create endpoint.
Response
List of errors or null.
Message objects for the conversation history.
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/chat/{id} \
--header 'authorization: <authorization>'
{
data: [
{
"role": "user",
"content": "message"
},
... // more messages
]
}
Get conversation history for a pathway chat.
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/chat/{id} \
--header 'authorization: <authorization>'
{
data: [
{
"role": "user",
"content": "message"
},
... // more messages
]
}
{
data: [
{
"role": "user",
"content": "message"
},
... // more messages
]
}
Was this page helpful?