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

> Fetch the log entry for a single call, including outcome, sentiment, duration, and post-call analysis fields.

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

Fetches the call log for a single call: the call `id`, its `status` (`completed`, `failed`, `no-answer`, `busy`, `voicemail`), `duration_sec`, the `end_reason`, the high-level sentiment, the `agent_id` that ran the call, the destination number, and any post-call analysis fields defined on the agent. The transcript and recording URL are not returned in this lightweight log, fetch those through [Get Call Details](/docs/api-reference/call-logs/get-details).

## When to use this

* **CRM sync**: write back the outcome and post-call analysis to the source CRM record.
* **Live dashboards**: render call cards with sentiment and outcome badges.
* **Quality monitoring**: flag calls where the analysis fields indicate a follow-up is required.
* **Lightweight checks**: poll for completion without paying the cost of fetching the full transcript.

For the transcript, recording URL, and full event timeline, call [Get Call Details](/docs/api-reference/call-logs/get-details). For multiple call logs filtered by date, agent, campaign, or outcome, use [List Call Logs](/docs/api-reference/call-logs/list).

## Path parameters

| Parameter | Description                                   |
| --------- | --------------------------------------------- |
| `id`      | The call ID, for example `call_x9y3zp4mq7r1`. |

## Errors

* `404 Not Found` is returned when the call does not exist.
* `403 Forbidden` is returned when the API key cannot read call data on this workspace.

## Related endpoints

* [Get Call Details](/docs/api-reference/call-logs/get-details): full transcript and recording URL.
* [List Call Logs](/docs/api-reference/call-logs/list): filter and paginate call logs.
* [Get Calls by Campaign](/docs/api-reference/call-logs/by-campaign): logs scoped to a campaign.
* [Post-call analysis](/docs/monitoring/post-call-analysis-results): guidance on configuring analysis fields.


## OpenAPI

````yaml GET /call-logs/{id}
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}:
    get:
      tags:
        - Call Logs
      summary: Get a call log by ID
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 
      operationId: CallLogsController_findOne
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: x-organization-id
          in: header
          description: Encrypted ID of the organization
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Return the call log
        '403':
          description: Access denied
        '404':
          description: Call log not found
      deprecated: true
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````