Quickstart
Durable Streams are the data primitive for the agent loop.
Persistent, addressable, real‑time streams for building resilient agent sessions and collaborative multi-user, multi-agent systems.
Get started
Get a Durable Streams server running in seconds. Create a stream, append data, read it back, and tail it live using curl.
1. Start the server
Download the latest durable-streams-server binary from the GitHub releases page, then run:
./durable-streams-server devThis starts an in-memory server on http://localhost:4437 with the stream endpoint at /v1/stream/*.
2. Create a stream
curl -X PUT http://localhost:4437/v1/stream/hello \
-H 'Content-Type: text/plain'3. Append some data
curl -X POST http://localhost:4437/v1/stream/hello \
-H 'Content-Type: text/plain' \
-d 'Hello, Durable Streams!'4. Read it back
curl "http://localhost:4437/v1/stream/hello?offset=-1"The response body contains your stream contents. Save the Stream-Next-Offset response header if you want to resume from the same position later.
5. Tail it live
In one terminal:
curl -N "http://localhost:4437/v1/stream/hello?offset=-1&live=sse"In another terminal:
curl -X POST http://localhost:4437/v1/stream/hello \
-H 'Content-Type: text/plain' \
-d 'This appears in real time!'The first terminal will receive the new data immediately.
Next steps
Raw durable streams are awesome but it's what you do with them that counts. Dive into the core concepts and see all of the ways you can use Durable Streams to build resilient, collaborative multi-agent systems.
Including, working with structured data and integrating into AI SDKs:
- JSON mode -- stream structured data using JSON messages
- StreamDB -- type-safe, reactive database in a stream
- TanStack AI -- durable session support for TanStack AI apps
- Vercel AI SDK -- durable Transport adapter for AI SDK apps