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

# Get a call

> The call record plus one `attempts` entry per dial, each its own session. Scope `sessions:read`.



## OpenAPI

````yaml /api-reference/openapi.json get /calls/{call_id}
openapi: 3.1.0
info:
  title: Lehar API
  version: v0
  description: >-
    Customer-facing REST API for the Lehar voice-AI platform. Platform-admin
    endpoints are intentionally excluded from this reference. Regenerate with
    `npm run sync:openapi`.
servers:
  - url: https://api.lehar.ai/ca/api/v0
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /calls/{call_id}:
    get:
      tags:
        - Calls
      summary: Get a call
      description: >-
        The call record plus one `attempts` entry per dial, each its own
        session. Scope `sessions:read`.
      operationId: get_call_ca_api_v0_calls__call_id__get
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Call with attempts
          content:
            application/json:
              example:
                call_id: call_01EXAMPLE
                agent_id: agent_sales_hi
                status: completed
                outcome: completed
                to_number_masked: +9198****3210
                attempt_count: 2
                session_id: session_01B
                attempts:
                  - session_id: session_01A
                    status: failed
                    outcome: no_answer
                    sentiment: null
                    started_at: '2026-08-11T09:00:10Z'
                    ended_at: '2026-08-11T09:00:40Z'
                  - session_id: session_01B
                    status: ended
                    outcome: completed
                    sentiment: positive
                    started_at: '2026-08-11T09:30:10Z'
                    ended_at: '2026-08-11T09:32:21Z'
        '404':
          description: Not found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
    BearerAuth:
      type: http
      scheme: bearer

````