curl --request POST \
--url https://analytics-api.voiceflow.com/v1/transcript-evaluation/estimate \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"evaluationIDs": [
"<string>"
],
"filters": [
{
"id": "<string>",
"op": "gt",
"value": 123
}
],
"endDate": "2023-11-07T05:31:56Z",
"sessionID": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"environmentID": "<string>"
}
'{
"totalCost": 123,
"breakdown": {
"transcriptCount": 123,
"evaluations": [
{
"id": "<string>",
"cost": 123
}
]
}
}Estimate the cost of running the specified evaluation for transcript matching the provided filters.
curl --request POST \
--url https://analytics-api.voiceflow.com/v1/transcript-evaluation/estimate \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"evaluationIDs": [
"<string>"
],
"filters": [
{
"id": "<string>",
"op": "gt",
"value": 123
}
],
"endDate": "2023-11-07T05:31:56Z",
"sessionID": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"environmentID": "<string>"
}
'{
"totalCost": 123,
"breakdown": {
"transcriptCount": 123,
"evaluations": [
{
"id": "<string>",
"cost": 123
}
]
}
}Voiceflow Dialog Manager API key (VF.DM) or Workspace API key (VF.WS)
1Select transcripts that were started before a specific date.
Select transcripts by sessionID.
Select transcripts that were started after a specific date.
Select transcripts that were generated from conversations within a specific environment.
Was this page helpful?