> ## 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 call transcripts with a person

> Every inbound and outbound call with one person, newest first, with the full transcript (plain text and speaker-labelled turns), AI summary, tags, status and duration, plus a `recording_url` to download the audio. Name the person with `contact_id` or `phone_number`. Covers AI and human calls on both LumisReach voice stacks, including Quick AI Phone Calls. Free: reads are never billed.



## OpenAPI

````yaml /openapi.json get /v1/history/calls
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:
    get:
      tags:
        - Conversation History
      summary: Get call transcripts with a person
      description: >-
        Every inbound and outbound call with one person, newest first, with the
        full transcript (plain text and speaker-labelled turns), AI summary,
        tags, status and duration, plus a `recording_url` to download the audio.
        Name the person with `contact_id` or `phone_number`. Covers AI and human
        calls on both LumisReach voice stacks, including Quick AI Phone Calls.
        Free: reads are never billed.
      operationId: v1_history_calls_get
      parameters:
        - name: contact_id
          in: query
          required: false
          schema:
            description: >-
              A contact id (from `GET /v1/history/people`). Its phone number /
              email is used.
            type: string
            minLength: 1
        - name: phone_number
          in: query
          required: false
          schema:
            description: The person's phone number, E.164 (+14155550123)
            type: string
            minLength: 3
        - name: limit
          in: query
          required: true
          schema:
            default: 20
            type: integer
            minimum: 1
            maximum: 50
        - name: cursor
          in: query
          required: false
          schema:
            description: '`meta.cursor` from the previous page'
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    type: array
                    items:
                      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
                  meta:
                    type: object
                    properties:
                      cursor:
                        type: string
                      page_size:
                        type: number
                    required:
                      - page_size
                    additionalProperties: false
                required:
                  - data
                  - meta
                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

````