curl --request GET \
--url https://app.harmonica.chat/api/v1/meetings/{id}/transcript \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.harmonica.chat/api/v1/meetings/{id}/transcript"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.harmonica.chat/api/v1/meetings/{id}/transcript', 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://app.harmonica.chat/api/v1/meetings/{id}/transcript",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.harmonica.chat/api/v1/meetings/{id}/transcript"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.harmonica.chat/api/v1/meetings/{id}/transcript")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.harmonica.chat/api/v1/meetings/{id}/transcript")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"transcript": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meeting_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "processing",
"availability": "pending",
"language": "<string>",
"revision": 2,
"content_hash": "<string>",
"restriction_revision": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"source": {
"kind": "harmonica_capture",
"provider": "<string>"
},
"processing": {
"provider": "<string>",
"model": "<string>",
"normalization_version": "<string>",
"attempt_status": "pending",
"failure_stage": "capture",
"failure_disposition": "retryable",
"error_code": "<string>",
"error_message": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
},
"access_basis": "owner",
"segments": [
{
"sequence": 1,
"speaker_id": "<string>",
"speaker_name": "<string>",
"start_ms": 1,
"end_ms": 1,
"text": "<string>",
"language": "<string>",
"continues_before": true,
"continues_after": true,
"text_offset": 1,
"speaker_email": "<string>"
}
],
"pagination": {
"limit": 100,
"max_chars": 25500,
"returned_chars": 25000,
"next_cursor": "<string>",
"complete": true
},
"text": "<string>"
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid or missing API key"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}Get a bounded transcript page
Returns one page bounded by both segment count and Unicode code-point text budget. It never auto-follows next_cursor. A cursor is bound to transcript ID and revision and may continue within one oversized speaker turn. If canonical content changes, an old cursor returns 409 transcript_revision_changed and the caller must restart from page one.
The owner or a named viewer-or-higher member of a non-deleted Project with a current attachment may read subject to external_export policy; Project-derived access additionally requires sharing policy. Project-derived denial returns the same 404 as an unknown meeting. Speaker names, IDs, and emails are unverified provider labels and must not be treated as cross-recording identity.
curl --request GET \
--url https://app.harmonica.chat/api/v1/meetings/{id}/transcript \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.harmonica.chat/api/v1/meetings/{id}/transcript"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.harmonica.chat/api/v1/meetings/{id}/transcript', 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://app.harmonica.chat/api/v1/meetings/{id}/transcript",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.harmonica.chat/api/v1/meetings/{id}/transcript"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.harmonica.chat/api/v1/meetings/{id}/transcript")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.harmonica.chat/api/v1/meetings/{id}/transcript")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"transcript": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meeting_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "processing",
"availability": "pending",
"language": "<string>",
"revision": 2,
"content_hash": "<string>",
"restriction_revision": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"source": {
"kind": "harmonica_capture",
"provider": "<string>"
},
"processing": {
"provider": "<string>",
"model": "<string>",
"normalization_version": "<string>",
"attempt_status": "pending",
"failure_stage": "capture",
"failure_disposition": "retryable",
"error_code": "<string>",
"error_message": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
},
"access_basis": "owner",
"segments": [
{
"sequence": 1,
"speaker_id": "<string>",
"speaker_name": "<string>",
"start_ms": 1,
"end_ms": 1,
"text": "<string>",
"language": "<string>",
"continues_before": true,
"continues_after": true,
"text_offset": 1,
"speaker_email": "<string>"
}
],
"pagination": {
"limit": 100,
"max_chars": 25500,
"returned_chars": 25000,
"next_cursor": "<string>",
"complete": true
},
"text": "<string>"
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid or missing API key"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}Authorizations
API key authentication. Pass your key as a Bearer token.
Keys use the format hm_live_<32 hex chars>.
Generate keys from your Harmonica dashboard settings.
Path Parameters
Query Parameters
turns, text Maximum number of returned segments.
1 <= x <= 200Maximum transcript-text code points returned. JSON framing and fixed metadata are outside this budget.
1000 <= x <= 50000Opaque revision-bound cursor from the previous transcript page.
1Owner-only and turns-only. Project-derived requests with true fail closed.
Response
One bounded transcript page
- Option 1
- Option 2
Exactly one bounded transcript page. The server never follows next_cursor automatically.