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

> Everything your workspace knows about one contact: name, phone, email, company, job title, location, notes, tags, custom fields, per-channel consent and CRM link. Get the id from `GET /v1/history/people`, an inbound SMS webhook (`data.contact.id`) or any history item. Free: reads are never billed.



## OpenAPI

````yaml /openapi.json get /v1/contacts/{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/contacts/{id}:
    get:
      tags:
        - Conversation History
      summary: Get a contact
      description: >-
        Everything your workspace knows about one contact: name, phone, email,
        company, job title, location, notes, tags, custom fields, per-channel
        consent and CRM link. Get the id from `GET /v1/history/people`, an
        inbound SMS webhook (`data.contact.id`) or any history item. Free: reads
        are never billed.
      operationId: v1_contacts_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
                      name:
                        type: string
                      first_name:
                        anyOf:
                          - type: string
                          - type: 'null'
                      last_name:
                        anyOf:
                          - type: string
                          - type: 'null'
                      phone_number:
                        anyOf:
                          - type: string
                          - type: 'null'
                      email:
                        anyOf:
                          - type: string
                          - type: 'null'
                      company:
                        anyOf:
                          - type: string
                          - type: 'null'
                      job_title:
                        anyOf:
                          - type: string
                          - type: 'null'
                      industry:
                        anyOf:
                          - type: string
                          - type: 'null'
                      location:
                        anyOf:
                          - type: string
                          - type: 'null'
                      preferred_language:
                        anyOf:
                          - type: string
                          - type: 'null'
                      date_of_birth:
                        anyOf:
                          - type: string
                          - type: 'null'
                        description: ISO date, `YYYY-MM-DD`
                      notes:
                        anyOf:
                          - type: string
                          - type: 'null'
                      tags:
                        type: array
                        items:
                          type: string
                      subscription_plan:
                        anyOf:
                          - type: string
                          - type: 'null'
                      purchase_history:
                        anyOf:
                          - type: string
                          - type: 'null'
                      product_preferences:
                        anyOf:
                          - type: string
                          - type: 'null'
                      custom_fields:
                        anyOf:
                          - type: object
                            propertyNames:
                              type: string
                            additionalProperties: {}
                          - type: 'null'
                        description: >-
                          Free-form fields set on the contact (CSV import,
                          Zapier, the API)
                      consent:
                        type: object
                        properties:
                          sms_opted_in:
                            type: boolean
                          voice_opted_in:
                            type: boolean
                          email_opted_in:
                            type: boolean
                          email_subscribed:
                            type: boolean
                            description: False once they unsubscribe from marketing email
                        required:
                          - sms_opted_in
                          - voice_opted_in
                          - email_opted_in
                          - email_subscribed
                        additionalProperties: false
                      first_inbound_call_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      first_inbound_text_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      first_inbound_email_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      crm:
                        anyOf:
                          - type: object
                            properties:
                              provider:
                                type: string
                              contact_id:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              last_synced_at:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                            required:
                              - provider
                              - contact_id
                              - last_synced_at
                            additionalProperties: false
                          - type: 'null'
                        description: The CRM record this contact is synced with, if any
                      created_at:
                        type: string
                      updated_at:
                        type: string
                    required:
                      - id
                      - name
                      - first_name
                      - last_name
                      - phone_number
                      - email
                      - company
                      - job_title
                      - industry
                      - location
                      - preferred_language
                      - date_of_birth
                      - notes
                      - tags
                      - subscription_plan
                      - purchase_history
                      - product_preferences
                      - custom_fields
                      - consent
                      - first_inbound_call_at
                      - first_inbound_text_at
                      - first_inbound_email_at
                      - crm
                      - created_at
                      - updated_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

````