GET
/api/v1/meetings/{id}/scoreGet Meeting Score
Returns the AI score, its justification, and evaluated objectives for a given meeting ID.
Authentication
Send your API key in the x-api-key header.
x-api-keybearer
Parameters
idrequiredpath · string
Meeting ID to get score from.
Responses
200
PublicApiGetMeetingScoreResponseDto
statusCoderequirednumber
countrequirednumber
errorrequiredstring
datarequiredPublicApiMeetingScoreResponseDto
Example response
json
{
"statusCode": 200,
"count": 0,
"error": null,
"data": {
"meetingId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
"score": 82,
"scoreJustification": "The meeting covered most playbook objectives with minor gaps.",
"objectives": [
{
"objective": "Identify the customer's main pain point",
"score": 75,
"explanation": "The seller asked about current challenges in the first minutes."
}
]
}
}
401Unauthorized - missing or invalid API key or Bearer token