Skip to main content
GET
/
v1
/
transcript
/
{transcriptID}
Get transcript
curl --request GET \
  --url https://analytics-api.voiceflow.com/v1/transcript/{transcriptID} \
  --header 'authorization: <api-key>'
{
  "transcript": {
    "id": "<string>",
    "sessionID": "<string>",
    "projectID": "<string>",
    "environmentID": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "expiresAt": "2023-11-07T05:31:56Z",
    "endedAt": "2023-11-07T05:31:56Z",
    "recordingURL": "<string>",
    "properties": [
      {
        "value": "<string>",
        "metadata": {},
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "id": "<string>",
        "name": "<string>",
        "type": "<string>",
        "default": true
      }
    ],
    "evaluations": [
      {
        "value": 123,
        "reason": "<string>",
        "cost": 123,
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "default": true,
        "type": "boolean"
      }
    ],
    "history": [
      {
        "id": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "logs": [
      {
        "type": "trace",
        "data": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

authorization
string
header
required

Voiceflow Dialog Manager API key (VF.DM) or Workspace API key (VF.WS)

Path Parameters

transcriptID
string
required

ID of the transcript to target.

Query Parameters

unredacted
boolean

When enabled, un-redacted logs will be returned if they are still available.

filterConversation
boolean

When enabled, only text, speak and live-agent-handoff traces will be returned.

customTraceTypes
string[]

Used to indicate additional trace types that should be returned when filterConversation is enabled.

Response

200 - application/json
transcript
object
required