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

# Get a call

> One call by id (from `GET /v1/history/calls`, a call webhook, or a Quick AI Phone Call job): the full transcript (plain text and speaker-labelled turns), AI summary, tags, status and duration, plus a `recording_url` to download the audio. Free: reads are never billed.



## OpenAPI

````yaml /openapi.json get /v1/history/calls/{id}
openapi: 3.1.0
info:
  title: LumisReach v1 API
  version: 1.0.0
  description: >-
    Programmatic access to the LumisReach voice platform — calls, numbers,
    caller trust, and brands.
  contact:
    name: LumisReach
    email: founders@lumisreach.com
servers:
  - url: https://api.lumisreach.com/api
security:
  - bearerAuth: []
tags:
  - name: Phone Numbers
  - name: Caller IDs
  - name: Enterprise Registration
  - name: Branded Calling
  - name: Calls
  - name: SMS
  - name: WebRTC
  - name: Reputation
  - name: Usage
  - name: Account
  - name: Conversation History
  - name: Documents
  - name: Quick Agent Actions
  - name: Sub-entities
paths:
  /v1/history/calls/{id}:
    get:
      tags:
        - Conversation History
      summary: Get a call
      description: >-
        One call by id (from `GET /v1/history/calls`, a call webhook, or a Quick
        AI Phone Call job): the full transcript (plain text and speaker-labelled
        turns), AI summary, tags, status and duration, plus a `recording_url` to
        download the audio. Free: reads are never billed.
      operationId: v1_history_calls_id_get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      direction:
                        anyOf:
                          - type: string
                            enum:
                              - inbound
                              - outbound
                          - type: 'null'
                      status:
                        type: string
                      from_number:
                        type: string
                      to_number:
                        type: string
                      started_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      ended_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      duration_seconds:
                        anyOf:
                          - type: number
                          - type: 'null'
                      summary:
                        anyOf:
                          - type: string
                          - type: 'null'
                      transcript:
                        anyOf:
                          - type: string
                          - type: 'null'
                      transcript_turns:
                        type: array
                        items:
                          type: object
                          properties:
                            speaker:
                              type: string
                              enum:
                                - agent
                                - person
                            text:
                              type: string
                            seconds_from_start:
                              anyOf:
                                - type: number
                                - type: 'null'
                          required:
                            - speaker
                            - text
                            - seconds_from_start
                          additionalProperties: false
                      tags:
                        type: array
                        items:
                          type: string
                          enum:
                            - booking_requested
                            - callback_requested
                            - complaint
                            - purchase_interest
                            - interested
                            - qualified
                            - not_interested
                            - transferred
                      has_recording:
                        type: boolean
                      recording_url:
                        anyOf:
                          - type: string
                          - type: 'null'
                        description: >-
                          `GET` it with your API key to download the audio (`GET
                          /v1/history/calls/{id}/recording`). Null when the call
                          has no recording.
                      created_at:
                        type: string
                    required:
                      - id
                      - direction
                      - status
                      - from_number
                      - to_number
                      - started_at
                      - ended_at
                      - duration_seconds
                      - summary
                      - transcript
                      - transcript_turns
                      - tags
                      - has_recording
                      - recording_url
                      - created_at
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '409':
          description: Conflict (incl. idempotency conflicts)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            fields:
              type: object
              additionalProperties:
                type: string
            doc_url:
              type: string
              format: uri
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````