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
}
}
'import requests
url = "https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks"
payload = { "args": {
"meetingId": "jd7xzqn8h9p2v4k5m6n7p8q9",
"fromSequence": 0,
"limit": 50,
"bucketMs": 1698765300000
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
args: {
meetingId: 'jd7xzqn8h9p2v4k5m6n7p8q9',
fromSequence: 0,
limit: 50,
bucketMs: 1698765300000
}
})
};
fetch('https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'args' => [
'meetingId' => 'jd7xzqn8h9p2v4k5m6n7p8q9',
'fromSequence' => 0,
'limit' => 50,
'bucketMs' => 1698765300000
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks"
payload := strings.NewReader("{\n \"args\": {\n \"meetingId\": \"jd7xzqn8h9p2v4k5m6n7p8q9\",\n \"fromSequence\": 0,\n \"limit\": 50,\n \"bucketMs\": 1698765300000\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"args\": {\n \"meetingId\": \"jd7xzqn8h9p2v4k5m6n7p8q9\",\n \"fromSequence\": 0,\n \"limit\": 50,\n \"bucketMs\": 1698765300000\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"args\": {\n \"meetingId\": \"jd7xzqn8h9p2v4k5m6n7p8q9\",\n \"fromSequence\": 0,\n \"limit\": 50,\n \"bucketMs\": 1698765300000\n }\n}"
response = http.request(request)
puts response.read_body{
"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
}
]
}{}{}Transcripts
getTranscriptChunks
sequence number and time bucket. Supports pagination with configurable limits (max 200 per request). Uses query optimizer for efficient index-backed retrieval. Requires meeting participant access. Returns chunks in ascending sequence order.
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
}
}
'import requests
url = "https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks"
payload = { "args": {
"meetingId": "jd7xzqn8h9p2v4k5m6n7p8q9",
"fromSequence": 0,
"limit": 50,
"bucketMs": 1698765300000
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
args: {
meetingId: 'jd7xzqn8h9p2v4k5m6n7p8q9',
fromSequence: 0,
limit: 50,
bucketMs: 1698765300000
}
})
};
fetch('https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'args' => [
'meetingId' => 'jd7xzqn8h9p2v4k5m6n7p8q9',
'fromSequence' => 0,
'limit' => 50,
'bucketMs' => 1698765300000
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks"
payload := strings.NewReader("{\n \"args\": {\n \"meetingId\": \"jd7xzqn8h9p2v4k5m6n7p8q9\",\n \"fromSequence\": 0,\n \"limit\": 50,\n \"bucketMs\": 1698765300000\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"args\": {\n \"meetingId\": \"jd7xzqn8h9p2v4k5m6n7p8q9\",\n \"fromSequence\": 0,\n \"limit\": 50,\n \"bucketMs\": 1698765300000\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://connvo-dev.convex.cloud/api/run/transcripts/ingestion/getTranscriptChunks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"args\": {\n \"meetingId\": \"jd7xzqn8h9p2v4k5m6n7p8q9\",\n \"fromSequence\": 0,\n \"limit\": 50,\n \"bucketMs\": 1698765300000\n }\n}"
response = http.request(request)
puts response.read_body{
"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
Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.
Body
application/json
Show child attributes
Show child attributes
⌘I