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

# Get Live call Status

## Overview

The "Get Live Call Status" endpoint allows users to retrieve the current status of any call in their Toingg account. By sending a GET request to the `/live_call_status` endpoint, users can access real-time information about a call's status using the call SID. This functionality is crucial for monitoring ongoing calls, ensuring that users can track call progress and manage communications effectively. The endpoint provides timely updates to support efficient call management and decision-making processes.

#### Example cURL Request

```bash theme={null}
curl -X GET \
  'https://api.toingg.com/api/v3/twilio/live_call_status?callSid=YOUR_CALL_SID' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```


## OpenAPI

````yaml GET /live_call_status    
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /live_call_status:
    get:
      tags:
        - Twilio handling
      summary: Live Call Status
      operationId: live_call_status_live_call_status_get
      parameters:
        - name: callSid
          in: query
          required: true
          schema:
            type: string
            title: Callsid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````