> ## Documentation Index
> Fetch the complete documentation index at: https://doc.featherhq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stream Turn

> Subscribe to a turn's live SSE frames (Phase 3 split contract).

**Auth is the security boundary:** ownership (org-scope + the session's
owner) is asserted BEFORE a single frame streams — the ``turn_id`` UUID is
defense-in-depth, not the boundary. Deliberately does NOT use the
request-scoped ``get_session`` dependency (that would pin a DB connection for
the whole relay); it opens a short-lived session only for the ownership check,
then reads the turn's Redis stream holding no DB connection.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/ask-feather/sessions/{session_id}/turns/{turn_id}/stream
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/ask-feather/sessions/{session_id}/turns/{turn_id}/stream:
    get:
      tags:
        - ask-feather
      summary: Stream Turn
      description: >-
        Subscribe to a turn's live SSE frames (Phase 3 split contract).


        **Auth is the security boundary:** ownership (org-scope + the session's

        owner) is asserted BEFORE a single frame streams — the ``turn_id`` UUID
        is

        defense-in-depth, not the boundary. Deliberately does NOT use the

        request-scoped ``get_session`` dependency (that would pin a DB
        connection for

        the whole relay); it opens a short-lived session only for the ownership
        check,

        then reads the turn's Redis stream holding no DB connection.
      operationId: >-
        stream_turn_v1_ask_feather_sessions__session_id__turns__turn_id__stream_get
      parameters:
        - name: session_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Session Id
        - name: turn_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Turn Id
      responses:
        '200':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````