Endpoints
Transcript
Transcript property
Finding conversations
Transcript search is aPOST rather than a GET, because the filters are rich
enough to need a body:
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Read the conversations your agent actually had. Search transcripts, fetch a single one, and attach your own properties to record what happened.
| Endpoint | Description |
|---|---|
| POST Search transcripts | Search transcripts by project ID. |
| GET Get transcript | Get a transcript by ID. |
| Endpoint | Description |
|---|---|
| GET List properties | List all properties by project ID. |
| POST Create property | Create a new property. |
| GET Get property | Get property by ID. |
| PATCH Update property | Update a property by ID. |
| DELETE Delete property | Delete a property by ID. |
| PUT Set property value | Set a property value on a transcript. |
POST rather than a GET, because the filters are rich
enough to need a body:
curl -X POST "https://realtime-api.voiceflow.com/v1/stable/transcript/search" \
-H "Authorization: Bearer $VF_PAT" \
-H "Content-Type: application/json" \
-d '{ "projectID": "'"$VF_PROJECT_ID"'" }'
Was this page helpful?