Content & moderation ↗
PII redaction
Detect and strip names, emails, phones, SSNs, cards, and PHI from text before you store or log it.
POST /v1/redact$0.03/call · 3 credits, charged only on success
Send this
{
"text": "Call Jane Doe at 415-555-0199 or jane@acme.com."
}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
{
"redacted": "Call [REDACTED] at [REDACTED] or [REDACTED].",
"entities": [
{
"type": "name",
"text": "Jane Doe"
},
{
"type": "phone",
"text": "415-555-0199"
},
{
"type": "email",
"text": "jane@acme.com"
}
],
"entityCount": 3,
"usage": {
"credits": 3,
"balanceRemaining": 478
}
}Four ways in. Same $0.03/call.
curl
curl https://api.kynth.studio/v1/redact \
-H "Authorization: Bearer ksk_live_…" \
-H "Content-Type: application/json" \
-d '{"text":"Call Jane Doe at 415-555-0199 or jane@acme.com."}'TypeScript
import { KynthCore } from "@kynth/api";
const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.redact({
"text": "Call Jane Doe at 415-555-0199 or jane@acme.com."
});Python
from kynth import Kynth
client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.redact(
text="Call Jane Doe at 415-555-0199 or jane@acme.com.",
)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_redact tool.More from content & moderation
Content moderation
$0.02/item
Text or an image against YOUR policy → allow, review, or block, with the categories and excerpts that drove the call.
Brand-voice rewrite
$0.03/call
Any copy → your brand voice. Describe the voice or paste a sample; get the rewrite and what changed.
Product copy
$0.05/product
Specs and an audience → listing-ready titles, bullets, a description, and SEO keywords — per channel.