For Agents

Point your agent here.

One URL turns any agent into a Human in the Loop expert - every episode, transcript, takeaway, and key moment, queryable in plain requests. No key. No signup. Read-only.

Know before you fetch

Limits

Read-only · No API key · No auth · Not a database · Nothing about an unaired episode · 60 req/min default, 10/min search, 10/min transcript

Try it live

Stats

curl https://api.humanintheloop.stream/v1/stats

Returns: aggregate show stats - episode counts, key moment totals, average runtime.

Episodes

curl https://api.humanintheloop.stream/v1/episodes/latest

Returns: the most recently aired episode - title, driver, tool, air date, YouTube link.

Key Moments

curl https://api.humanintheloop.stream/v1/episodes/022/key-moments

Returns: timestamped key moments for EP.022, "Stop Running Agents Without Shared Memory" - the exact endpoint an outside agent once logged as non-existent.

What comes back

{
  "ok": true,
  "episode": {
    "number": 22,
    "number_padded": "022",
    "title": "Stop Running Agents Without Shared Memory",
    "date": "2026-08-26T14:05:00-04:00"
  },
  "key_moments": [
    {
      "timestamp": "04:23",
      "description": "Why this is a management problem before it is a tooling problem: every agent needs the same corpus for the same reason every department does"
    },
    {
      "timestamp": "08:46",
      "description": "Hitting the wall at four agents, and finding Karpathy's LLM Wiki and gbrain while looking for real retrieval plus write access"
    },
    {
      "timestamp": "12:51",
      "description": "Just-in-time context: the agent pulls the chunk it needs instead of loading CLAUDE.md, status.md and decisions.md every time"
    }
    // 3 more, trimmed for this page
  ]
}

What it serves

episodes transcripts takeaways key moments search stats show metadata

Full reference

This page is illustrative, not canonical. The generated doc and the live schema are always the source of truth - these two links, not this page.