Media & agents

Agent memory

Store, search, and forget memories for your agents — semantic recall on your own namespace, no vector DB to run.

POST /v1/memory$0.02/operation · 2 credits, charged only on success

Send this

{
  "op": "search",
  "namespace": "agent-42",
  "query": "what does the customer prefer for delivery?",
  "limit": 3
}

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

{
  "op": "search",
  "results": [
    {
      "id": "mem_8f3a…",
      "content": "Customer prefers evening deliveries after 6pm, no signature.",
      "score": 0.91,
      "metadata": {
        "source": "ticket-5561"
      },
      "createdAt": "2026-07-01T18:22:00Z"
    }
  ],
  "usage": {
    "credits": 2,
    "balanceRemaining": 215
  }
}

Four ways in. Same $0.02/operation.

curl
curl https://api.kynth.studio/v1/memory \
  -H "Authorization: Bearer ksk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"op":"search","namespace":"agent-42","query":"what does the customer prefer for delivery?","limit":3}'
TypeScript
import { KynthCore } from "@kynth/api";

const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.memory({
  "op": "search",
  "namespace": "agent-42",
  "query": "what does the customer prefer for delivery?",
  "limit": 3
});
Python
from kynth import Kynth

client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.memory(
    op="search",
    namespace="agent-42",
    query="what does the customer prefer for delivery?",
    limit=3,
)
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_memory tool.

More from media & agents