Your VidLab7 API key used for authentication.
The content type of the request body. Always application/json
.
Parameters
The id (UUID) of the conversation that the transcipt and summary should be retrieved for.
curl --location --request GET 'https://api-prd.vidlab7.com/api/v1/conversations/{conversationId}' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <YOUR_API_KEY>' \
{
"transcript": [
{
"role": "assistant",
"type": "type",
"text": "Hello, and nice to meet you!",
"timestamp": "2015-03-26T10:58:51Z"
}
],
"summary": "Hello"
}
Responses
200:
An array of conversation objects. Each object contains properties for role, text, type and timestamp.
Indicates the role of the participant (e.g., “user”, “assistant”).
The textual content of the message.
Specifies the type of the message.
A datetime timestamp marking when the message was sent.
An AI generated summary generated from the conversation transcription.