GET
/
v1
/
interviews
/
{interviewId}
/
transcript
Get interview transcript
curl --request GET \
  --url https://api.vistaly.com/v1/interviews/{interviewId}/transcript \
  --header 'Authorization: Bearer <token>'
"00:00:12 John Doe: Welcome to today's interview.\n00:00:15 Jane Smith: Thank you for having me."

Authorizations

Authorization
string
header
required

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

Path Parameters

interviewId
string
required

The unique identifier for the interview

Response

200
text/plain

Transcript retrieved successfully

The response is of type string.

Example:

"00:00:12 John Doe: Welcome to today's interview.\n00:00:15 Jane Smith: Thank you for having me."