Skip to main content
POST
/
v1
/
items
/
{item_id}
/
transcript
Generate the transcript (async)
curl --request POST \
  --url https://api.clipping.cc/v1/items/{item_id}/transcript \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lang": "<string>",
  "text": "<string>",
  "manual_lang": "<string>",
  "embed": true
}
'
{
  "execution": {
    "execution_id": "<string>",
    "status": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.clipping.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in the header: Authorization: Bearer ck_live_…

Path Parameters

item_id
string
required

Body

application/json
lang
string

Target language (e.g. pt).

text
string

Manual transcript (skips the external transcriber).

manual_lang
string
embed
boolean

Generate embeddings for search (consumes tokens).

Response

Execution created.

execution
object