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

# Read a session transcript

> Returns transcript events in ascending sequence order after the supplied cursor.



## OpenAPI

````yaml /openapi/v1.json get /teams/{teamSlug}/sessions/{sessionId}/transcript
openapi: 3.1.0
info:
  title: Felan API
  description: >-
    Team-scoped access to Felan sessions, integrations, environments,
    environment variables, automations, and inbound events.
  version: 1.0.0
  contact:
    name: Felan Support
    url: https://felan.ai
servers:
  - url: https://app.felan.ai/api/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Teams
  - name: Integrations
  - name: Environments
  - name: Environment Variables
  - name: Automations
  - name: Sessions
  - name: Events
  - name: OpenAPI
paths:
  /teams/{teamSlug}/sessions/{sessionId}/transcript:
    get:
      tags:
        - Sessions
      summary: Read a session transcript
      description: >-
        Returns transcript events in ascending sequence order after the supplied
        cursor.
      operationId: getTeamSessionTranscript
      parameters:
        - $ref: '#/components/parameters/TeamSlug'
        - $ref: '#/components/parameters/SessionId'
        - name: after_sequence
          in: query
          description: >-
            Return events with a sequence greater than this non-negative decimal
            string. Leading zeros are accepted.
          schema:
            type: string
            pattern: ^\d+$
        - name: limit
          in: query
          description: >-
            Maximum events to return. Defaults to 100; larger positive values
            are capped at 1000.
          schema:
            type: integer
            minimum: 1
            maximum: 1000
            default: 100
      responses:
        '200':
          description: Transcript page
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/TranscriptPage'
        '400':
          description: Invalid transcript cursor or limit
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  parameters:
    TeamSlug:
      name: teamSlug
      in: path
      required: true
      description: Felan team slug shown in dashboard URLs and Team Settings
      schema:
        type: string
        minLength: 1
    SessionId:
      name: sessionId
      in: path
      required: true
      description: Felan session ID
      schema:
        type: string
        format: uuid
  schemas:
    TranscriptPage:
      type: object
      required:
        - session_id
        - events
        - next_cursor
        - has_more
      properties:
        session_id:
          type: string
          format: uuid
        events:
          type: array
          items:
            $ref: '#/components/schemas/TranscriptEvent'
        next_cursor:
          type:
            - string
            - 'null'
          pattern: ^\d+$
          description: >-
            Sequence of the final returned event, or the supplied cursor when no
            events are returned. Null on an empty initial page.
        has_more:
          type: boolean
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              examples:
                - VALIDATION_ERROR
                - UNAUTHORIZED
                - NOT_FOUND
                - EXECUTION_DENIED
                - CONFLICT
                - RATE_LIMITED
                - SESSION_START_FAILED
                - SESSION_PUBLISH_FAILED
                - MESSAGE_PUBLISH_FAILED
                - INTERNAL_ERROR
            message:
              type: string
    TranscriptEvent:
      type: object
      required:
        - id
        - sequence
        - event_type
        - event_ts
        - raw_event
        - created_at
      properties:
        id:
          type: string
          format: uuid
        sequence:
          type: string
          pattern: ^\d+$
          description: Decimal event sequence represented as a string.
        event_type:
          type: string
        event_ts:
          type: string
          format: date-time
        raw_event:
          description: >-
            Sanitized transcript event payload. Internal provider, credential,
            request, signature, sender identifier, and repeated conversation
            metadata is omitted.
        created_at:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid team API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource missing or outside the authenticated team
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: Team API key rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    InternalError:
      description: The server could not complete the request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Team API key. Current keys retain the bzy_team_ compatibility prefix.

````