Skip to main content
POST
/
api
/
run
/
transcripts
/
ingestion
/
getTranscriptChunks
getTranscriptChunks
curl --request POST \
  --url https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "args": {
    "meetingId": "jd7xzqn8h9p2v4k5m6n7p8q9",
    "fromSequence": 0,
    "limit": 50,
    "bucketMs": 1698765300000
  }
}'
{
  "status": "success",
  "value": [
    {
      "_id": "jh8xzqn8h9p2v4k5m6n7p8r1",
      "sequence": 1,
      "speakerId": "user_alice_123",
      "text": "Welcome everyone to the meeting.",
      "confidence": 0.95,
      "startMs": 1698765432000,
      "endMs": 1698765434000,
      "wordCount": 5,
      "language": "en",
      "createdAt": 1698765434100
    },
    {
      "_id": "jh8xzqn8h9p2v4k5m6n7p8r2",
      "sequence": 2,
      "speakerId": "user_bob_456",
      "text": "Thanks for having me.",
      "confidence": 0.89,
      "startMs": 1698765435000,
      "endMs": 1698765437000,
      "wordCount": 4,
      "language": "en",
      "createdAt": 1698765437100
    }
  ]
}

Authorizations

Authorization
string
header
required

Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.

Body

application/json
args
object
required

Response

Convex executed your request and returned a result

status
enum<string>
required
Available options:
success,
error
errorMessage
string
errorData
object
value
object[]