Tags and folders
Organize recordings into folders and tags, and filter by speaker and source.
Recording library
Turn call and meeting recordings into a structured archive: tags, folders, full-text search and export.
Recording library
Organize recordings into folders and tags, and filter by speaker and source.
Transcripts as PDF, DOCX, Markdown, SRT and VTT — for reports, protocols and subtitles.
Find recordings by meaning and ask questions — the model answers with citations.
3 recordings found. Answer: “the release moved to 27 September” — quote from the 12 Sep call, 00:41.
API
Find recordings by meaning, export transcripts and ask questions with citations.
# Семантический поиск
curl -X POST https://ttsapi.ru/v1/search \
-H "X-Api-Key: rtt_…" \
-H "Content-Type: application/json" \
-d '{ "query": "обсуждение сроков релиза" }'
# Экспорт транскрипта в PDF
curl -X GET "https://ttsapi.ru/v1/recordings/rec_…/export?format=pdf" \
-H "X-Api-Key: rtt_…"
from voicekit import VoiceKitClient
client = VoiceKitClient(api_key="rtt_…")
hits = client.search("обсуждение сроков релиза")
answer = client.ask("когда релиз?")
pdf = client.export_recording("rec_…", format="pdf")
import { VoiceKitClient } from "voicekit-client";
const client = new VoiceKitClient({ apiKey: "rtt_…" });
const hits = await client.search("обсуждение сроков релиза");
const answer = await client.ask("когда релиз?");
const pdf = await client.exportRecording("rec_…", "pdf");
using VoiceKit;
var client = new VoiceKitClient("rtt_…");
var hits = await client.SearchAsync("обсуждение сроков релиза");
var answer = await client.AskAsync("когда релиз?");
byte[] pdf = await client.ExportRecordingAsync("rec_…", "pdf");
FAQ
TXT, Markdown, SRT, VTT, DOCX and PDF — for reports, protocols and subtitles.
It runs on vector embeddings: find recordings by meaning and ask questions, with cited answers.
Usually within a minute of transcription — recordings become searchable right away.
Hybrid embedding + full-text search with filters by tag, folder, speaker and date.
Tags, folders and search are available on Pro and Business plans.