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

# Gets call status.

> Retrieves the latest status for a Leadping phone call by call ID, including provider state and call details for tracking progress.



## OpenAPI

````yaml /openapi.json get /phone-call/{callId}/status
openapi: 3.0.4
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    business settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Dispositions
  - name: Feedback
  - name: Leads
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: Businesses
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /phone-call/{callId}/status:
    get:
      tags:
        - Calls
      summary: Gets call status.
      description: >-
        Retrieves the latest status for a Leadping phone call by call ID,
        including provider state and call details for tracking progress.
      operationId: Calls_GetCallStatus
      parameters:
        - name: callId
          in: path
          description: The unique identifier of the call to check.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Calls status was successfully retrieved.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/PhoneCallResponse'
                description: >-
                  Response schema for the Leadping API phone call returned to
                  authenticated clients.
        '400':
          description: The request was invalid or malformed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    PhoneCallResponse:
      type: object
      properties:
        status:
          allOf:
            - $ref: '#/components/schemas/PhoneCallStatus'
          description: Current lifecycle status for this phone call in the Leadping API.
        statusReason:
          type: string
          description: >-
            Human-readable reason explaining the current status of this phone
            call.
          nullable: true
        direction:
          type: string
          description: >-
            Communication direction for this phone call, such as inbound or
            outbound.
          nullable: true
        conversationId:
          type: string
          description: >-
            Conversation ID that links this phone call to the Leadping inbox
            thread.
          nullable: true
        leadId:
          type: string
          description: Lead ID associated with the call conversation or outreach attempt.
          nullable: true
        phoneNumber:
          type: string
          description: >-
            Phone number used by this phone call for calls, SMS, lookup, or
            routing.
        toPhoneNumber:
          type: string
          description: Recipient phone number used for this communication.
          nullable: true
        fromPhoneNumberId:
          type: string
          description: Sender phone number ID used for this outbound SMS or call.
          nullable: true
        fromPhoneNumber:
          type: string
          description: Sender phone number used for this communication.
          nullable: true
        callerId:
          type: string
          description: Caller ID phone number presented during the outbound call.
          nullable: true
        selectionReason:
          enum:
            - StickyConversation
            - LeadAssigned
            - CampaignOrSource
            - Preferred
            - LocalArea
            - HealthyPool
            - FallbackDefault
            - ManualOverride
          type: string
          description: Defines the supported Outgoing Number Selection Reason values.
          nullable: true
        wasManuallyOverridden:
          type: boolean
          description: >-
            Indicates whether a user manually overrode Leadping's automatic
            number selection for this phone call.
        campaignId:
          type: string
          description: Messaging campaign identifier associated with this phone call.
          nullable: true
        sourceId:
          type: string
          description: Lead source ID used for attribution and routing on this call.
          nullable: true
        endedAt:
          type: string
          description: UTC timestamp when the call ended.
          format: date-time
          nullable: true
        queuedAt:
          type: string
          description: UTC timestamp when Leadping queued this phone call for processing.
          format: date-time
          nullable: true
        ringingAt:
          type: string
          description: UTC timestamp when the call started ringing.
          format: date-time
          nullable: true
        answeredAt:
          type: string
          description: UTC timestamp when the call was answered.
          format: date-time
          nullable: true
        durationSeconds:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: Call duration in seconds.
          format: int32
          nullable: true
        billingStatus:
          type: string
          description: Billing state for this communication, charge, or transaction.
          nullable: true
        billableAmount:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$
          description: >-
            Monetary amount billed for this Leadping communication or
            transaction.
          format: double
          nullable: true
        recordingUrl:
          type: string
          description: URL for the call recording, when the provider makes one available.
          nullable: true
        id:
          type: string
          description: The unique identifier for the entity.
        createdAt:
          type: string
          description: The date and time when the entity was created.
          format: date-time
        modifiedAt:
          type: string
          description: The date and time when the entity was last modified, if applicable.
          format: date-time
          nullable: true
      description: >-
        Response schema for the Leadping API phone call returned to
        authenticated clients.
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type.
          nullable: true
        title:
          type: string
          description: Short, human-readable summary of the problem.
          nullable: true
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: HTTP status code returned for the problem.
          format: int32
          nullable: true
        detail:
          type: string
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
          nullable: true
    PhoneCallStatus:
      enum:
        - scheduled
        - queued
        - initiated
        - ringing
        - in_progress
        - active
        - completed
        - ended
        - busy
        - no_answer
        - failed
        - canceled
        - missed
        - transferred
        - voicemail
        - blocked_billing
        - blocked_phone_number_status
        - blocked_configuration
        - blocked_permission
        - configuration_required
      type: string
      description: Defines the supported Phone Call Status values.

````