GET
/
v1
/
recordings
/
{recordingId}
cURL
curl --request GET \
  --url https://api.claap.io/v1/recordings/{recordingId} \
  --header 'X-Claap-Key: <api-key>'
{
  "result": {
    "recording": {
      "channel": {
        "id": "<string>",
        "name": "<string>"
      },
      "createdAt": "<string>",
      "durationSeconds": 123,
      "id": "<string>",
      "labels": [
        "<string>"
      ],
      "meeting": {
        "endingAt": "<string>",
        "participants": [
          {
            "attended": true,
            "email": "<string>",
            "id": "<string>",
            "name": "<string>"
          }
        ],
        "startingAt": "<string>",
        "type": "internal"
      },
      "recorder": {
        "attended": true,
        "email": "<string>",
        "id": "<string>",
        "name": "<string>"
      },
      "thumbnailUrl": "<string>",
      "title": "<string>",
      "url": "<string>",
      "video": {
        "url": "<string>"
      },
      "workspace": {
        "id": "<string>",
        "name": "<string>"
      },
      "actionItems": [
        {
          "items": [
            {
              "isChecked": true,
              "description": "<string>"
            }
          ],
          "langIso2": "<string>"
        }
      ],
      "companies": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ],
      "crmInfo": {
        "crm": "attio",
        "deal": {
          "id": "<string>"
        }
      },
      "deal": {
        "id": "<string>",
        "name": "<string>"
      },
      "insightTemplates": [
        {
          "templateTitle": "<string>",
          "insights": [
            {
              "langIso2": "<string>",
              "sections": [
                {
                  "description": "<string>",
                  "title": "<string>"
                }
              ]
            }
          ]
        }
      ],
      "keyTakeaways": [
        {
          "langIso2": "<string>",
          "text": "<string>"
        }
      ],
      "outlines": [
        {
          "langIso2": "<string>",
          "text": "<string>"
        }
      ],
      "transcripts": [
        {
          "isActive": true,
          "isTranscript": true,
          "langIso2": "<string>",
          "textUrl": "<string>",
          "url": "<string>"
        }
      ]
    }
  }
}

Authorizations

X-Claap-Key
string
header
required

Path Parameters

recordingId
string
required

Recording identifier

Response

200 - application/json

Recording was successfully retrieved

The response is of type object.