Communication

Outreach sequence

An enriched lead plus what you sell → a personalized outreach sequence that references what actually makes them a fit.

POST /v1/outreach$0.06/sequence · 6 credits, charged only on success

Send this

{
  "lead": "{…/v1/enrich output for brightco.io…}",
  "product": "Kynth Verbatim — meeting notes that write themselves",
  "sender": {
    "name": "Isaiah",
    "role": "Founder",
    "company": "Kynth"
  },
  "steps": 2
}

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

{
  "sequence": [
    {
      "day": 0,
      "subject": "Notes for BrightCo's client calls",
      "message": "Hi Dana — saw BrightCo runs 20+ client calls a week…"
    },
    {
      "day": 4,
      "subject": null,
      "message": "Bumping this — one line…"
    }
  ],
  "personalizationPoints": [
    "Agency model = heavy client-call volume",
    "Recent hiring spree in account management"
  ],
  "usage": {
    "credits": 6,
    "balanceRemaining": 303
  }
}

Four ways in. Same $0.06/sequence.

curl
curl https://api.kynth.studio/v1/outreach \
  -H "Authorization: Bearer ksk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"lead":"{…/v1/enrich output for brightco.io…}","product":"Kynth Verbatim — meeting notes that write themselves","sender":{"name":"Isaiah","role":"Founder","company":"Kynth"},"steps":2}'
TypeScript
import { KynthCore } from "@kynth/api";

const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.outreach({
  "lead": "{…/v1/enrich output for brightco.io…}",
  "product": "Kynth Verbatim — meeting notes that write themselves",
  "sender": {
    "name": "Isaiah",
    "role": "Founder",
    "company": "Kynth"
  },
  "steps": 2
});
Python
from kynth import Kynth

client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.outreach(
    lead="{…/v1/enrich output for brightco.io…}",
    product="Kynth Verbatim — meeting notes that write themselves",
    sender={
    "name": "Isaiah",
    "role": "Founder",
    "company": "Kynth"
  },
    steps=2,
)
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_outreach tool.

More from communication