Deprecated shim — redirects to the streaming chat endpoint.
307 Temporary Redirect to POST /api/lists/{id}/chat/stream. The 307 preserves the HTTP method and body, so clients that follow redirects transparently hit the streaming endpoint.
New integrations should call streamListChat directly and consume its text stream. This shim exists so older clients continue to work.
POST /api/lists/{id}/chat/stream for new code. The streaming endpoint is the only path that surfaces partial tokens and tool-call progress — the redirect hides that stream behind a layer that many HTTP clients can’t follow cleanly (especially when the body is large).Why the redirect exists. The non-streaming endpoint predates the inline agent refactor. Removing it entirely would break pinned clients, so it hangs around as a one-liner.If you see a non-307 response here (e.g. a 500), something unexpected happened in the redirect handler itself — retry on the streaming endpoint.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List UUID
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$Temporary redirect to /api/lists/{id}/chat/stream. HTTP clients that follow 307 with the original method and body will transparently hit the streaming endpoint.