GET
/
api
/
v1
/
conversations
/
{conversationId}
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"
}

Headers

x-api-key
string
required
Your VidLab7 API key used for authentication.
Content-Type
string
The content type of the request body. Always application/json.

Parameters

conversationId
string
required
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:

transcript
Transcript[]
An array of conversation objects. Each object contains properties for role, text, type and timestamp.
summary
string
An AI generated summary generated from the conversation transcription.