Skip to main content
GET
/
agents
/
{agent_id}
/
stream
Server-Sent Events stream of canonical card changes.
curl --request GET \
  --url https://api.mnemom.ai/v1/agents/{agent_id}/stream \
  --header 'Authorization: Bearer <token>'
"<string>"

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Headers

Last-Event-ID
integer

SSE reconnect convention; takes precedence over since when both are present.

Required range: x >= 0

Path Parameters

agent_id
string
required

Query Parameters

since
integer

log_index cursor; omit to start at the current head.

Required range: x >= 0

Response

SSE stream (text/event-stream). Each frame is event: card_changed\nid: <log_index>\ndata: {...}\n\n.

The response is of type string.