GET
/
v1
/
recordings
/
{recordingId}
/
transcript
cURL
curl --request GET \
  --url https://api.claap.io/v1/recordings/{recordingId}/transcript \
  --header 'X-Claap-Key: <api-key>'
{
  "result": {
    "segments": [
      {
        "endedAt": 137.5,
        "languageCode": "en",
        "speaker": "speaker_1",
        "startedAt": 136.1,
        "text": "Hello there!",
        "words": [
          {
            "endedAt": 136.8,
            "startedAt": 136.1,
            "word": "Hello"
          },
          {
            "endedAt": 137.5,
            "startedAt": 137.1,
            "word": "there!"
          }
        ]
      }
    ],
    "languageCode": "en"
  }
}

Authorizations

X-Claap-Key
string
header
required

Path Parameters

recordingId
string
required

Recording identifier

Query Parameters

lang
string

A 2-letters language code, to get a specific transcript or translation. If unset, the original transcript is returned

Example:

"fr"

format
enum<string>
default:json

The transcript is returned in JSON format by default. Use "text" to get a human readable representation

Available options:
json,
text

Response

200
application/json

Transcript was successfully retrieved

The response is of type object.