Generates a categorized word boost list from a completed transcription job. Extracts entities from the pass-1 transcript for use as word_boost in a second transcription pass.
curl --request POST \
--url https://api.case.dev/voice/boost-list/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"transcription_job_id": "<string>",
"categories": [
"person"
]
}
'{
"items": [
{
"word": "<string>",
"category": "<string>",
"boost_param": "low"
}
],
"source": "transcript",
"source_ids": [
"<string>"
]
}API key starting with sk_case_
Transcription job reference for entity extraction
Was this page helpful?
curl --request POST \
--url https://api.case.dev/voice/boost-list/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"transcription_job_id": "<string>",
"categories": [
"person"
]
}
'{
"items": [
{
"word": "<string>",
"category": "<string>",
"boost_param": "low"
}
],
"source": "transcript",
"source_ids": [
"<string>"
]
}