Skip to main content
GET
/
studies
/
{studyId}
/
observer-rooms
/
{observerRoomId}
/
transcripts
/
{botId}
Get the transcript for an observer room bot
curl --request GET \
  --url https://api.rallyuxr.com/api/public/v1/studies/{studyId}/observer-rooms/{observerRoomId}/transcripts/{botId} \
  --header 'Authorization: Bearer <token>'
{
  "shortSummary": "<string>",
  "longSummary": "<string>",
  "transcript": [
    {
      "speaker": "<string>",
      "speaker_id": "<string>",
      "language": "<string>",
      "words": [
        {
          "text": "<string>",
          "start_timestamp": 123,
          "end_timestamp": 123,
          "language": "<string>",
          "confidence": 123
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

studyId
string
required
observerRoomId
string
required
botId
string
required

Response

The transcript

shortSummary
string | null
required
longSummary
string | null
required
transcript
object[]
required