Export the complete current transcript
curl --request GET \
--url https://app.harmonica.chat/api/v1/meetings/{id}/transcript/export \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.harmonica.chat/api/v1/meetings/{id}/transcript/export"
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/export', 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/export",
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/export"
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/export")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.harmonica.chat/api/v1/meetings/{id}/transcript/export")
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{
"exported_at": "2023-11-07T05:31:56Z",
"meeting": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"meeting_url": "<string>",
"meeting_provider": "google_meet",
"starts_at": "2023-11-07T05:31:56Z",
"ends_at": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"status": "scheduled",
"error_code": "<string>",
"error_message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"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"
},
"utterances": [
{
"sequence": 1,
"speaker_id": "<string>",
"speaker_name": "<string>",
"speaker_email": "<string>",
"start_ms": 1,
"end_ms": 1,
"text": "<string>",
"language": "<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>"
}
}Endpoints
Export the complete current transcript
Owner-only complete JSON export. The export is intentionally unavailable as an MCP tool, requires a ready canonical transcript, and checks external_export policy immediately before one revision-consistent read. It excludes restriction rationale/history and raw provider artifact identifiers.
GET
/
meetings
/
{id}
/
transcript
/
export
Export the complete current transcript
curl --request GET \
--url https://app.harmonica.chat/api/v1/meetings/{id}/transcript/export \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.harmonica.chat/api/v1/meetings/{id}/transcript/export"
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/export', 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/export",
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/export"
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/export")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.harmonica.chat/api/v1/meetings/{id}/transcript/export")
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{
"exported_at": "2023-11-07T05:31:56Z",
"meeting": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"meeting_url": "<string>",
"meeting_provider": "google_meet",
"starts_at": "2023-11-07T05:31:56Z",
"ends_at": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"status": "scheduled",
"error_code": "<string>",
"error_message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"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"
},
"utterances": [
{
"sequence": 1,
"speaker_id": "<string>",
"speaker_name": "<string>",
"speaker_email": "<string>",
"start_ms": 1,
"end_ms": 1,
"text": "<string>",
"language": "<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>"
}
}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.