Web & research

Company enrichment

A domain or work email → a structured company profile: name, description, industry, HQ, size, and links.

POST /v1/enrich$0.05/lookup · 5 credits, charged only on success

Send this

{
  "email": "sam@stripe.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

{
  "name": "Stripe",
  "domain": "stripe.com",
  "description": "Payments infrastructure for the internet.",
  "industry": "Financial technology",
  "headquarters": "South San Francisco, CA",
  "employeeRange": "5001-10000",
  "founded": 2010,
  "links": {
    "website": "https://stripe.com",
    "linkedin": "…",
    "twitter": "…"
  },
  "grounded": true,
  "usage": {
    "credits": 5,
    "balanceRemaining": 444
  }
}

Four ways in. Same $0.05/lookup.

curl
curl https://api.kynth.studio/v1/enrich \
  -H "Authorization: Bearer ksk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"email":"sam@stripe.com"}'
TypeScript
import { KynthCore } from "@kynth/api";

const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.enrich({
  "email": "sam@stripe.com"
});
Python
from kynth import Kynth

client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.enrich(
    email="sam@stripe.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_enrich tool.

More from web & research