Transcripts
Get Transcripts
Transcripts
Get Transcripts
Get All Transcript
GET
/
v1
/
transcripts
curl --request GET \
--url https://api.aicaller.io/v1/transcripts \
--header 'aicaller-api-key: <api-key>'
{
"data": [
{
"teamId": "363573667364666473667332",
"phoneCallId": "363573667364666473667332",
"text": "Transcript text goes here.",
"speaker": "human",
"_id": "12345678901234567890",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
Authorizations
Query Parameters
Response
200
application/json
Transcripts found.
The ID of the Team associated with the call.
Example:
"363573667364666473667332"
The ID of the phone call.
Example:
"363573667364666473667332"
Text content of the transcript.
Example:
"Transcript text goes here."
The speaker of the transcript. Possible values: "human", "ai".
Available options:
human
, ai
Example:
"human"
Unique identifier for the Transcript
Example:
"12345678901234567890"
curl --request GET \
--url https://api.aicaller.io/v1/transcripts \
--header 'aicaller-api-key: <api-key>'
{
"data": [
{
"teamId": "363573667364666473667332",
"phoneCallId": "363573667364666473667332",
"text": "Transcript text goes here.",
"speaker": "human",
"_id": "12345678901234567890",
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}