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

# Fetch event stream for a specific call



## OpenAPI

````yaml get /agency/twilio/event-stream/{callId}
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /agency/twilio/event-stream/{callId}:
    get:
      tags:
        - Twilio
      summary: Fetch event stream for a specific call
      operationId: TwilioController_fetchEventStream
      parameters:
        - name: callId
          required: true
          in: path
          description: The ID of the call to fetch event stream for
          schema:
            type: string
      responses:
        '200':
          description: Returns event stream data
        '400':
          description: Invalid call ID
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````