Early access · Updated Mon/Wed/Fri · 40 sources

Fresh RAG context for AI agents

A curated knowledge base your agent queries at inference time — not training data. Podcasts, blogs, and research papers — scraped, AI-summarised, and structured for agent consumption. Updated Mon/Wed/Fri across AI, startups, alternative markets, and emerging economies.

QUICK START
# Fetch the latest knowledge for your agent
curl \
  "https://api.agentdb.ai/v1/knowledge/latest?tags=ai&limit=3" \
  -H "X-API-Key: adb_xxxxxxxxxxxxxxxxxxxx"

# Response — structured, agent-ready
{
  "items": [{
    "title":      "DeepSeek v4 and the limits of scaling",
    "summary":    "DeepSeek's mixture-of-experts approach...",
    "key_points": ["MoE cuts inference cost 4×", ...],
    "tags":       ["ai", "llm", "scaling"],
    "confidence": 0.93,
    "source":     "Ars Technica"
  }]
}

Three steps to agent-ready knowledge

01

Get access

Email us to request early access. We'll set up your account and send your API key — no dashboard, no forms.

02

Query

Fetch the latest items or search by tag. Content comes from podcasts, blogs, and research papers — each one scraped and AI-summarised into structured JSON.

03

Inject context

Drop the structured summaries into your agent's RAG context. Each item is ~150 tokens vs thousands in the raw source — same signal, fraction of the cost.

Two endpoints. Works with any agent stack.

GET /v1/knowledge/latest — Trial + Pro
# Latest items, optionally filtered by tag
curl \
  "https://api.agentdb.ai/v1/knowledge/latest" \
  -H "X-API-Key: $AGENTDB_API_KEY"

# Filter by tag and page size
curl \
  "…/v1/knowledge/latest?tags=ai,startups&limit=10" \
  -H "X-API-Key: $AGENTDB_API_KEY"

# Semantic search (Pro key required)
curl \
  "…/v1/knowledge/search?q=LLM+reasoning+breakthroughs&limit=5" \
  -H "X-API-Key: $AGENTDB_API_KEY"
RESPONSE — structured item
{
  "id":           "3e7c224c-...",
  "title":        "DeepSeek v4 and the limits of scaling",
  "content_type": "article",
  "summary":     "DeepSeek's MoE architecture cuts inference...",
  "key_points": [
    "MoE reduces active params by 4× at inference",
    "Outperforms GPT-4o on coding benchmarks",
    "Open weights released under MIT licence"
  ],
  "tags":        ["ai", "llm", "open-source"],
  "confidence":  0.93,
  "source_name": "Ars Technica",
  "published_at":"2026-04-25T07:00:00Z"
}

Same signal. ~15× fewer tokens.

Every source item is AI-processed before it hits the API. You get a structured summary and key points — not a raw transcript your agent has to parse itself.

Raw source  ≈ 2,400 tokens
Lex Fridman: So let me ask you about scaling.
Some people say we're hitting a wall—

[Guest]: I think that framing fundamentally
misunderstands what we're building. Let me
unpack that. When we talk about scaling, we
need to distinguish between compute scaling,
data scaling, and algorithmic efficiency.
The three interact in non-linear ways that…

[46 more minutes of transcript]

…so the short answer is: we're not hitting
a wall, we're approaching a threshold where
the nature of progress changes qualitatively.
That's a very different thing.
AgentDB output  ≈ 160 tokens
{
  "title":      "Lex Fridman #412 — Scaling & AGI",
  "summary":    "Guest argues scaling limits are
    misframed; qualitative capability shifts
    emerge at compute thresholds.",
  "key_points": [
    "Compute, data, and algo scaling interact non-linearly",
    "Progress shifts qualitatively near thresholds",
    "'Hitting a wall' framing is misleading"
  ],
  "confidence": 0.91,
  "tags": ["ai", "scaling", "agi"]
}

Curated sources. Chosen for signal density.

No wire services. No legacy media. Every source is selected because it produces original thinking — not aggregated takes. Updated Mon/Wed/Fri at 07:00 UTC.

Technology / AI
Lex Fridman Podcast Dwarkesh Podcast Hard Fork This Week in Tech ChinaTalk Ars Technica Import AI TLDR Tech 404 Media Wired arXiv AI
Startups / VC
Acquired How I Built This Y Combinator Blog Y Combinator (YouTube) TechCrunch The Verge Entrepreneur The Generalist Parsers VC
Alternative Markets / Macro
All-In Podcast Prof G Markets Zero Hedge Calculated Risk Econbrowser A Wealth of Common Sense The Big Picture The Daily Upside Asymco Noahpinion
Emerging Markets
Rest of World TechCabal Techpoint Africa Disrupt Africa Mint (India) Asia Times The Hindu Business Line
Policy / Regulation
Politico Europe arXiv Policy

40 sources · updated Mon/Wed/Fri at 07:00 UTC

Simple, agent-friendly pricing

Trial
Free
14-day trial

  • 100 requests / day
  • Full API access
  • All knowledge categories
  • Structured JSON output
  • No credit card required
Request Access
Pro
£79
per month

  • Unlimited requests
  • Full API access
  • All knowledge categories
  • Structured JSON output
  • Priority support + custom sources
Request Access