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

# Get Live Call Status

> Retrieves the live status of an individual call from the memory cache (Redis). Data is available for 30 days.



## OpenAPI

````yaml get /api/v1/status/call
openapi: 3.0.3
info:
  title: Dialgen API
  description: >-
    Dialgen API allows you to programmatically initiate and monitor AI-powered
    voice calls, either one at a time or in high-volume batches.
  version: 1.0.0
  contact:
    name: Dialgen Support
    url: https://sa.dialgen.ai
servers:
  - url: https://sa.dialgen.ai
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Agents
    description: Operations related to AI agents
  - name: Calls
    description: Operations related to individual calls
  - name: Batches
    description: Operations related to batch campaigns
paths:
  /api/v1/status/call:
    get:
      tags:
        - Calls
      summary: Get Live Call Status
      description: >-
        Retrieves the live status of an individual call from the memory cache
        (Redis). Data is available for 30 days.
      operationId: getCallStatus
      parameters:
        - name: callId
          in: query
          description: The ID returned from the POST /api/v1/call/dial endpoint
          required: true
          schema:
            type: string
            example: call_clxabc123...
      responses:
        '200':
          description: Call status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallStatus'
              example:
                callId: call_clxabc123...
                status: ONGOING
                startTime: '2025-11-15T14:30:01.123Z'
                phoneNumber: '+15551234567'
                contactId: contact_clx789ghi...
                batchId: null
                error: null
                duration: null
                recordingUrl: null
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    CallStatus:
      type: object
      properties:
        callId:
          type: string
        status:
          type: string
          enum:
            - SCHEDULED
            - ONGOING
            - COMPLETED
            - MISSED
            - FAILED
        startTime:
          type: string
          format: date-time
        phoneNumber:
          type: string
        contactId:
          type: string
        batchId:
          type: string
          nullable: true
        error:
          type: string
          nullable: true
        duration:
          type: number
          nullable: true
        recordingUrl:
          type: string
          nullable: true
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
        message:
          type: string
        details:
          type: object
  responses:
    BadRequest:
      description: Missing or invalid fields/parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Bad Request
            message: Missing required parameter
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Unauthorized
            message: Invalid or missing API key
    NotFound:
      description: The requested resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Not Found
            message: Resource not found
    InternalServerError:
      description: An unexpected server error occurred
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Internal Server Error
            message: An unexpected error occurred
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token authentication. Obtain your API key from the Dialgen API
        Keys dashboard at https://sa.dialgen.ai/api-keys

````