> ## 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.

# Get lead call event details by event ID

> Returns one call event, including call metadata, provider status, related lead, and communication context.



## OpenAPI

````yaml /openapi.json get /events/calls/{callEventId}
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:
  /events/calls/{callEventId}:
    get:
      tags:
        - CallEvents
      summary: Get lead call event details by event ID
      description: >-
        Returns one call event, including call metadata, provider status,
        related lead, and communication context.
      operationId: CallEvents_GetById
      parameters:
        - name: callEventId
          in: path
          description: The ID of the call event to retrieve.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Returns the call event table row.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/CallEventTableRow'
                description: >-
                  List item schema for Leadping API call event table row results
                  shown in searchable tables.
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: The requested resource was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    CallEventTableRow:
      type: object
      properties:
        id:
          type: string
          description: Unique Leadping identifier for this call event table row.
        leadId:
          type: string
          description: Lead ID associated with this call event.
          nullable: true
        businessId:
          type: string
          description: Business ID associated with this call event.
          nullable: true
        userId:
          type: string
          description: >-
            User ID associated with the person or agent who initiated this call
            event.
          nullable: true
        conversationId:
          type: string
          description: >-
            Conversation ID that links this call event table row to the Leadping
            inbox thread.
          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.
        toPhoneNumber:
          type: string
          description: Recipient phone number used for this communication.
        callerId:
          type: string
          description: Caller ID phone number presented during the outbound call.
          nullable: true
        status:
          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.
          nullable: true
        statusReason:
          type: string
          description: >-
            Human-readable reason explaining the current status of this call
            event table row.
          nullable: true
        direction:
          type: string
          description: >-
            Communication direction for this call event table row, such as
            inbound or outbound.
        createdAt:
          type: string
          description: UTC timestamp when this call event table row was created.
          format: date-time
        answeredAt:
          type: string
          description: UTC timestamp when the call was answered.
          format: date-time
          nullable: true
        endedAt:
          type: string
          description: UTC timestamp when the call ended.
          format: date-time
          nullable: true
        duration:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: >-
            Call duration or processing duration represented by this call event
            table row.
          format: int32
          nullable: true
        billableSeconds:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: Billable call duration in seconds.
          format: int32
          nullable: true
        billableAmount:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$
          description: >-
            Monetary amount billed for this Leadping communication or
            transaction.
          format: double
          nullable: true
        billingStatus:
          type: string
          description: Billing state for this communication, charge, or transaction.
          nullable: true
        recordingUrl:
          type: string
          description: URL for the call recording, when the provider makes one available.
          nullable: true
        user:
          type: string
          description: User summary connected to this call event table row.
        business:
          type: string
          description: Business summary connected to this call event table row.
      description: >-
        List item schema for Leadping API call event table row results shown in
        searchable tables.
    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

````