Skip to main content
GET
/
agent
/
{agentId}
/
transcript
cURL
curl --request GET \
  --url https://your-hosted-ip/api/v1/agent/{agentId}/transcript \
  --header 'Authorization: <api-key>'
[
  {
    "speaker": "<string>",
    "start_timestamp": 0,
    "end_timestamp": 0,
    "words": [
      {
        "start_timestamp": 0,
        "end_timestamp": 0,
        "text": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Use the format 'Token ' for authentication.

Path Parameters

agentId
string
required

The ID of the agent whose transcript is being fetched

Response

Meeting transcript successfully fetched for the agent

speaker
string

Name of the speaker

start_timestamp
number<float>
default:0

Start time of the speech segment in seconds

end_timestamp
number<float>
default:0

End time of the speech segment in seconds

words
object[]