GET
/
transcript
/
{transcript_id}
/
get_transcript
Get Transcript
curl --request GET \
  --url https://api.meestream.ai/v1/transcript/{transcript_id}/get_transcript \
  --header 'Authorization: <api-key>'
[
  {
    "speaker": "<string>",
    "transcript": "<string>",
    "start_time": 123,
    "end_time": 123,
    "words": [
      {
        "word": "<string>",
        "start": 123,
        "end": 123,
        "confidence": 123,
        "speaker": "<string>",
        "punctuated_word": "<string>",
        "speech_confidence": 123
      }
    ],
    "speaker_confidence": 123
  }
]

Authorizations

Authorization
string
header
required

All API endpoints are authenticated using API Keys. The key should be included in the 'Authorization' header, prefixed with 'Token '. Example: 'Authorization: Token YOUR_API_KEY'.

Path Parameters

transcript_id
string
required

The unique identifier of the transcript.

Response

200
application/json

Returns the detailed transcript with speaker information and word-level details.

The response is of type object[].