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

# Get Call Details

> Fetch the complete call record including transcript, recording URL, and extracted analysis data.

<Warning>
  **Legacy endpoint - deprecated.** Unversioned endpoints are scheduled for removal on **July 31, 2026**. A public v1 replacement is not currently listed in the v1 reference. This endpoint remains available for existing integrations until then.
</Warning>

Returns the full detail view for a completed call. This is the richest response in the Calls API, and includes:

* **Transcript:** A full text transcript of the conversation, speaker-labeled.
* **Recording URL:** A link to the audio recording (if enabled).
* **Post-call analysis:** Any custom fields your agent extracted from the transcript (e.g., sentiment, intent, CSAT score, whether an appointment was booked).
* **Timeline events:** Key moments in the call such as when the agent spoke, when the caller interrupted, and when tools were invoked.

## When to use this

Use this endpoint when you need to display a call's full transcript in your dashboard, push extracted data to your CRM, or audit an agent's behavior on a specific call.

For bulk analytics, use [List Call Logs](/docs/api-reference/call-logs/list) with filters rather than fetching details for each call individually.


## OpenAPI

````yaml GET /call-logs/{id}/details
openapi: 3.0.0
info:
  title: DialNexa API
  description: >-
    Public REST API for the DialNexa voice AI platform. Versioned endpoints are
    under /v1; unversioned endpoints are legacy and deprecated.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: API Keys
  - name: Agent Functions
  - name: Agents V1
  - name: Agents2
  - name: Batch Calls
  - name: Batch Calls V1
  - name: Call Logs
  - name: Calls
  - name: Calls V1
  - name: Campaign Leads
  - name: Campaigns
  - name: External Webhooks
  - name: Knowledge Base
  - name: Knowledge Base V1
  - name: LLMs
  - name: LLMs V1
  - name: Languages
  - name: Languages V1
  - name: Organization Phone Numbers
  - name: Organization Phone Numbers V1
  - name: Phone Number Pricing
  - name: Phone Number Pricing V1
  - name: Transcribers
  - name: Transcribers V1
  - name: User Webhooks
  - name: User Webhooks V1
  - name: V1
  - name: Voices
  - name: Voices V1
  - name: Webcall
  - name: Workflow Leads
  - name: Workflow Leads V1
  - name: Workflows
  - name: Workflows V1
paths:
  /call-logs/{id}/details:
    get:
      tags:
        - Call Logs
      summary: >-
        Get specific fields for a call log (recording_url, transcript, summary,
        notes)
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 
      operationId: CallLogsController_getCallLogDetails
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: fields
          required: true
          in: query
          description: Comma-separated list of fields to retrieve
          schema:
            type: string
        - name: x-organization-id
          in: header
          description: RSA encrypted organization ID (base64 format)
          required: true
          schema:
            type: string
            example: BASE64_ENCRYPTED_ORG_ID_HERE
      responses:
        '200':
          description: Requested call log fields returned successfully
        '400':
          description: No valid fields requested
        '403':
          description: Access denied
        '404':
          description: Call log not found
      deprecated: true
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````