Web & research

Research brief

A company or topic → a multi-source, citation-backed brief: what it is, what changed lately, and what matters. Real web work.

POST /v1/research$0.50/brief · 50 credits, charged only on success

Send this

{
  "query": "brightco.io",
  "focus": "funding, pricing changes, hiring signals"
}

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

{
  "brief": "BrightCo is a 40-person client-services platform that raised an $8M Series A in March…",
  "findings": [
    {
      "finding": "Raised $8M Series A led by Foundry (March 2026)",
      "sourceIndexes": [
        0,
        2
      ]
    },
    {
      "finding": "Pricing page moved from seats to usage tiers in May",
      "sourceIndexes": [
        1
      ]
    }
  ],
  "sources": [
    {
      "url": "https://techcrunch.com/…",
      "title": "BrightCo raises $8M…"
    },
    {
      "url": "https://brightco.io/pricing",
      "title": "BrightCo pricing"
    }
  ],
  "usage": {
    "credits": 50,
    "balanceRemaining": 237
  }
}

Four ways in. Same $0.50/brief.

curl
curl https://api.kynth.studio/v1/research \
  -H "Authorization: Bearer ksk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"query":"brightco.io","focus":"funding, pricing changes, hiring signals"}'
TypeScript
import { KynthCore } from "@kynth/api";

const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.research({
  "query": "brightco.io",
  "focus": "funding, pricing changes, hiring signals"
});
Python
from kynth import Kynth

client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.research(
    query="brightco.io",
    focus="funding, pricing changes, hiring signals",
)
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_research tool.

More from web & research