Skip to main content
GET
/
calls
/
{callId}
/
scorecard
Get a call scorecard
curl --request GET \
  --url https://api.triplesession.com/v2/calls/{callId}/scorecard \
  --header 'Authorization: Bearer <token>'
{
  "scorecard": {
    "name": "<string>",
    "sections": [
      {
        "name": "<string>",
        "criteria": [
          {
            "id": "<string>",
            "name": "<string>",
            "comment": "<string>"
          }
        ]
      }
    ]
  },
  "coaching_plan": {
    "focus_area": {
      "biggest_improvement_opportunity": "<string>",
      "recommendation": "<string>",
      "try_this": "<string>",
      "question_suggestions": [
        "<string>"
      ]
    },
    "strengths": [
      {
        "name": "<string>",
        "comment": "<string>"
      }
    ],
    "areas_for_improvement": [
      {
        "name": "<string>",
        "comment": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.triplesession.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a public API key with the endpoint's required scope.

Path Parameters

callId
string<uuid>
required

Call ID.

Response

Scorecard evaluation output for the call.

scorecard
object
required
coaching_plan
object
required