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

# Get Call Status

> Get the current status of a call.



## OpenAPI

````yaml /openapi.json get /api/calls/{call_id}/status
openapi: 3.1.0
info:
  title: Nenyax API
  description: Backend API for Nenyax Voice Agent Platform
  version: 0.1.0
servers:
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /api/calls/{call_id}/status:
    get:
      tags:
        - Calls
      summary: Get Call Status
      description: Get the current status of a call.
      operationId: get_call_status_api_calls__call_id__status_get
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
            title: Call Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CallStatusResponse:
      properties:
        call_id:
          type: string
          title: Call Id
        status:
          $ref: '#/components/schemas/SessionStatus'
        call_status:
          anyOf:
            - $ref: '#/components/schemas/CallStatus'
            - type: 'null'
        call_direction:
          anyOf:
            - $ref: '#/components/schemas/CallDirection'
            - type: 'null'
        outbound_phone_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Outbound Phone Number
        room_name:
          type: string
          title: Room Name
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        ended_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Ended At
        duration:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration
      type: object
      required:
        - call_id
        - status
        - room_name
      title: CallStatusResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SessionStatus:
      type: string
      enum:
        - CREATED
        - ACTIVE
        - COMPLETED
        - FAILED
      title: SessionStatus
    CallStatus:
      type: string
      enum:
        - RINGING
        - ANSWERED
        - COMPLETED
        - FAILED
        - NO_ANSWER
      title: CallStatus
    CallDirection:
      type: string
      enum:
        - INBOUND
        - OUTBOUND
      title: CallDirection
    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

````