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

# Get Call Status

> Get call status and details.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /calls/{call_id}
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /calls/{call_id}:
    get:
      tags:
        - calls
      summary: Get Call Status
      description: Get call status and details.
      operationId: get_call_status_calls__call_id__get
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Call Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallStatus'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CallStatus:
      properties:
        call_id:
          type: string
          format: uuid
          title: Call Id
        agent_id:
          type: string
          format: uuid
          title: Agent Id
        tenant_id:
          type: string
          format: uuid
          title: Tenant Id
        direction:
          type: string
          title: Direction
        from_number:
          type: string
          title: From Number
        to_number:
          type: string
          title: To Number
        status:
          type: string
          title: Status
        disposition:
          anyOf:
            - type: string
            - type: 'null'
          title: Disposition
        duration_seconds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Seconds
        recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Url
        sentiment_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Sentiment Score
        language_detected:
          anyOf:
            - type: string
            - type: 'null'
          title: Language Detected
        started_at:
          type: string
          title: Started At
        ended_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Ended At
      type: object
      required:
        - call_id
        - agent_id
        - tenant_id
        - direction
        - from_number
        - to_number
        - status
        - started_at
      title: CallStatus
      description: Call status model.
    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:
    HTTPBearer:
      type: http
      scheme: bearer

````