Communication

Meeting minutes

A meeting transcript → clean minutes: summary, decisions made, action items with owners, and open questions.

POST /v1/minutes$0.06/transcript · 6 credits, charged only on success

Send this

{
  "transcript": "<45-minute product sync transcript…>",
  "attendees": [
    "Priya",
    "Marco",
    "Dana"
  ]
}

Every response carries usage — the credits burned and your remaining balance. A failed call never burns credits.

Try it live against your own key in the interactive reference; every account gets 500 free credits a month, no card.

Get this back

{
  "title": "Product sync — launch readiness",
  "summary": "Launch moves to Friday behind the payment fix…",
  "decisions": [
    "Launch Friday, not Thursday"
  ],
  "actionItems": [
    {
      "task": "Deploy duplicate-charge fix",
      "owner": "Priya",
      "due": "2026-07-10"
    }
  ],
  "openQuestions": [
    "Does the churn dashboard need the new events?"
  ],
  "usage": {
    "credits": 6,
    "balanceRemaining": 309
  }
}

Four ways in. Same $0.06/transcript.

curl
curl https://api.kynth.studio/v1/minutes \
  -H "Authorization: Bearer ksk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"transcript":"<45-minute product sync transcript…>","attendees":["Priya","Marco","Dana"]}'
TypeScript
import { KynthCore } from "@kynth/api";

const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.minutes({
  "transcript": "<45-minute product sync transcript…>",
  "attendees": [
    "Priya",
    "Marco",
    "Dana"
  ]
});
Python
from kynth import Kynth

client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.minutes(
    transcript="<45-minute product sync transcript…>",
    attendees=[
    "Priya",
    "Marco",
    "Dana"
  ],
)
MCP
// One-time setup in your MCP client (Claude, Cursor, …):
{ "mcpServers": { "kynth-core": {
    "command": "npx", "args": ["@kynth/api-mcp"],
    "env": { "KYNTH_API_KEY": "ksk_live_…" } } } }

// Then the agent just calls the kynth_minutes tool.

More from communication