A read-only HTTP API for Exploring Next episodes: metadata, audio, scripts, and
transcripts. There is also an iframe player you can embed on any site. No account or
API key is required.
Example response (captured at build time). Press Run it to fetch it live from your browser.
{
"episodes": [
{
"id": "edf11f68-7008-4c74-928c-f9c98ead6522",
"episodeNumber": 1002,
"title": "Model Behavior: Week of September 21, 2026",
"summary": "We read this week as the frontier splitting around agent execution: the winning move is less about one model leap and more about who controls the place where long-running work actually happens. The complication is that OpenAI, Anthropic, Google, DeepSeek, and the open-weight challengers are still making the parts better, cheaper, or sharper, so the stack is not replacing models so much as turning them into swappable pieces.",
"publishedAt": "2026-09-23T00:05:41.905+00:00",
"durationSeconds": 739,
"hosts": {
"a": "Masonry",
"b": "Eyre"
},
"topics": {
"domains": [
"agents",
"new-models"
],
"concepts": [
"agentic-loops",
"tool-use-and-function-calling",
"state-management-in-language-models",
"durable-execution",
"model-routing",
"retry-loops-and-error-recovery",
"context-window-management",
"token-economics"
],
"entities": [
"openai",
"anthropic",
"google"
]
},
"links": {
"self": "https://ingest.sandrise.io/v1/episodes/1002",
"audio": "https://ingest.sandrise.io/v1/episodes/1002/audio",
"script": "https://ingest.sandrise.io/v1/episodes/1002/script",
"transcript": "https://ingest.sandrise.io/v1/episodes/1002/transcript",
"page": "https://sandrise.io/exploring-next/1002",
"embed": "https://sandrise.io/exploring-next/embed/1002",
"oembed": "https://sandrise.io/exploring-next/oembed?url=https%3A%2F%2Fsandrise.io%2Fexploring-next%2F1002"
}
}
],
"pagination": {
"nextCursor": "eyJkIjoiMjAyNi0wNy0…",
"limit": 1
}
}
Conventions
Base URL
https://ingest.sandrise.io/v1. The discovery document lists every endpoint.
Auth
Most routes need a free API key — see Authentication. Everything is read-only (GET/HEAD only).
CORS
Access-Control-Allow-Origin: *, so it can be called directly from browser code.
Rate limits
120 requests/min per IP for metadata, 30/min for audio. A 429 response includes Retry-After.
Caching
Responses include an ETag. Send If-None-Match and unchanged resources return 304 Not Modified.
IDs
An episode's UUID and its episode number are interchangeable wherever an episode is referenced.
Authentication
Episode metadata, scripts, and transcripts require a free API key. Audio streaming,
the discovery document, the OpenAPI spec, the embed widget,
and oEmbed do not. Send the key as Authorization: Bearer <key>
(or an X-API-Key header). The "Run it" buttons on this page go through a
rate-limited demo proxy, so you can try everything without one.
To get a key, email Nick
with a line about what you're building. Keys are free; the usage terms still apply.
Endpoints
GET/v1/episodes
List episodes. Published episodes, newest first. Keyset-paginated — follow pagination.nextCursor until it returns null. Requires an API key.
Get one episode. Accepts a UUID or an episode number — /v1/episodes/1002 works. The links object contains the URLs for the audio, script, transcript, episode page, and embed. Requires an API key.
Get the audio. Returns the episode MP3. Supports HTTP Range requests, so players can seek. Add ?download=1 to get a Content-Disposition: attachment response with a descriptive filename. No API key needed.
Query parameters for /v1/episodes/{idOrNumber}/audio
Get the script. Returns the dialogue as speaker-labeled segments with stage directions removed, plus chapters with per-chapter summaries and takeaways. Requires an API key.
Trimmed here for length. Run it to see every segment.
{
"id": "edf11f68-7008-4c74-928c-f9c98ead6522",
"episodeNumber": 1002,
"title": "Model Behavior: Week of September 21, 2026",
"hosts": {
"a": "Masonry",
"b": "Eyre"
},
"chapters": [
{
"title": "The agent layer eats the launch cycle",
"summary": "Masonry and Eyre frame the week around OpenAI's Agents API and the broader move from model selling to managed execution.",
"takeaways": [
"OpenAI's Agents API is a shift toward cloud agent infrastructure, not just another model surface.",
"The competitive unit is becoming the harness that manages context, tools, long-running work, and model choice.",
"Raw capability still matters, but it is increasingly judged by how well it plugs into execution."
]
},
"… more chapters"
],
"segments": [
{
"speaker": "Masonry",
"text": "The move that tells on the whole week is OpenAI's Agents API, because it makes the quiet part loud: the frontier race is not just whose model scores higher. It is who owns the execution layer where the model becomes a worker. Eyre, I know your eyebrow is already doing the benchmark-skeptic thing, but this is the board shifting."
},
{
"speaker": "Eyre",
"text": "Yeah, and I mostly buy that, which is annoying for my brand. OpenAI is not merely saying, use GPT-6 Astra, or Sol, or Luna in your app. The pitch is, let us run the cloud agent with the Codex harness, context handling, tool use, and long-running state managed for you. That turns the model into one replaceable component inside a larger machine."
},
"… 39 more segments"
]
}
GET/v1/episodes/{idOrNumber}/transcript
Get the transcript. Returns the transcript as text/plain, one line per spoken turn. Requires an API key.
the episode has no usable script (uncommon; older episodes)
rate_limited
too many requests; retry after Retry-After seconds (429)
Embed the player
A self-contained iframe player for embedding on other sites. It plays the audio, seeks,
changes speed, and offers a download. It sets no cookies, uses no storage, and loads no
third-party scripts. Each player includes a "Listen on Exploring Next" link back to the
episode page.
the most recent episode; updates as new episodes publish
/embed/{number}
a specific episode, by number or UUID (e.g. /embed/1002)
?theme=dark
dark palette; the default is the light theme above
?accent=RRGGBB
accent color as 6-digit hex, without the #
size
height is fixed at 180; width is fluid down to 250px
keyboard
Space/K play–pause, ←/→ seek ±5s
The player posts playback events to the parent page via postMessage, as
{ source: "exploring-next-embed", event, id, episodeNumber }, where
event is one of ready, play, pause, or
ended.
oEmbed
Platforms that support oEmbed (for
example WordPress and Ghost) embed the player automatically when an episode URL is
pasted. Episode pages declare the endpoint in their <head>. You can
also call it directly:
https://mcp.sandrise.io — list, search, and fetch episodes (including transcripts and structured scripts) over the Model Context Protocol. Streamable HTTP at /mcp.
This API is free and open — no keys, no signup. In return, a few terms apply to keep it
that way:
Attribute it. When you show or quote an episode, credit Exploring Next and link back to the episode page (sandrise.io/exploring-next/…). The embed player and oEmbed responses already include the link.
Don't re-host the archive. Building on top of the API is welcome; scraping the full catalog to republish it as your own feed, app, or dataset is not.
Respect the rate limits. 120 requests/min for metadata, 30/min for audio, per IP. They're generous for real use; sustained bulk extraction will be throttled.
It can change. Content is generated and occasionally corrected or removed. Cache reasonably, but treat the API — not your copy — as the source of truth.
Questions, higher limits, or a partnership? Get in touch. The same
terms are advertised on every API response as a Link: …; rel="license" header.
Versioning
v1 is additive-only: new fields may be added over time, but existing
fields are not removed or renamed, and existing URLs do not change. If a v2
is ever introduced, v1 will continue to work.
🧠
PM Perspective
Crafting your PM challenge
Analyzing context and generating a thoughtful question...