curl --request GET \
--url https://api.example.com/api/v1/sender-profile-chat/session/{session_id}/history \
--header 'Authorization: Bearer <token>'[
{
"role": "<string>",
"content": "<string>",
"id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"metadata": {}
}
]Get the chat history for a session.
Returns all messages in the conversation so far.
Args: session_id: The chat session ID
Returns: List of chat messages
curl --request GET \
--url https://api.example.com/api/v1/sender-profile-chat/session/{session_id}/history \
--header 'Authorization: Bearer <token>'[
{
"role": "<string>",
"content": "<string>",
"id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"metadata": {}
}
]Documentation Index
Fetch the complete documentation index at: https://docs.bavlio.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.