Skip to main content
Version: /v2

Fetch a Realtime Transcription - API

This API lets you fetch details of specified realtime transcription.

HTTP method and endpoint

GET

|

https://api.videosdk.live/ai/v1/realtime-transcriptions/${transcriptionId}
Headers Parameters

values : YOUR_TOKEN_WITHOUT_ANY_PREFIX

This will be a JWT token generate using VideoSDK ApiKey and Secret.

Note that the token will not include any prefix such as "Basic " or "Bearer ". Just pass a token as value.

You can generate a new token by refering this Guide: Generate Auth token

Parameters

The ID of the post transcription.

GET
|
https://api.videosdk.live/ai/v1/realtime-transcriptions/${transcriptionId}
import fetch from 'node-fetch';
const options = {
method: "GET",
headers: {
"Authorization": "$YOUR_TOKEN",
"Content-Type": "application/json",
},
};
const transcriptionId = "your_transcriptionId";
const url= `https://api.videosdk.live/ai/v1/realtime-transcriptions/${transcriptionId}`;
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
RESPONSE
{
"id": "82feea14-6783-4e63-84fc-17c5666bfd5c",
"status": "completed",
"extension": {
"enabled": true,
"provider": "videosdk",
"extensionConfig": {
"roomId": "abc-xyzw-lmno",
"sessionId": "621497578bea0d0404c35c4c"
}
},
"transcriptionFilePaths": {
"txt": "https://cdn.videosdk.live/transcriptions/dummy/dummy.txt"
},
"summarizedFilePaths": {
"txt": "https://cdn.videosdk.live/transcriptions/dummy/dummy-summary.txt"
},
"start": "2024-02-27T16:00:36.828Z",
"end": "2024-02-27T16:01:46.939Z"
}

Got a Question? Ask us on discord