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

# Get Contact

> Retrieves detailed contact information including current call status and history

<Warning>
  This endpoint is deprecated. Use [Get Contact](/v2/endpoint/get-contact) instead. See the [Migration Guide](/v2-migration-guide) for details.
</Warning>


## OpenAPI

````yaml openapi.json GET /v1/get-contact/{contactId}
openapi: 3.0.3
info:
  title: telli API
  version: 1.0.0
  description: API documentation for telli's V1 endpoints
servers:
  - url: https://api.telli.com
security:
  - apiKey: []
paths:
  /v1/get-contact/{contactId}:
    get:
      summary: Get Contact
      description: >-
        Retrieves detailed contact information including current call status and
        history
      parameters:
        - name: contactId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: The telli contact ID
      responses:
        '200':
          description: Contact details retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  contact_id:
                    type: string
                    format: uuid
                    description: The telli contact ID
                  external_contact_id:
                    type: string
                    description: Your unique internal identifier for the contact
                  external_url:
                    type: string
                    format: uri
                    description: >-
                      External URL linking to the contact in your CRM or
                      external system
                  created_at:
                    type: string
                    format: date-time
                    description: When the contact was created
                  first_name:
                    type: string
                    description: First name of the contact
                  last_name:
                    type: string
                    description: Last name of the contact
                  phone_number:
                    type: string
                    description: Contact's phone number in E.164 format
                  in_call_since:
                    type: string
                    format: date-time
                    description: >-
                      Timestamp of when current call started, null if not in
                      call
                  reached_at:
                    type: string
                    format: date-time
                    description: When the contact was last successfully reached
                  contact_details:
                    type: object
                    description: Custom variables passed to the AI agent
                  call_attempts:
                    type: integer
                    description: Number of call attempts made to this contact
                  next_call_at:
                    type: string
                    format: date-time
                    description: When the next call is scheduled, null if no call scheduled
                  email:
                    type: string
                    format: email
                    description: Contact's email address
                  timezone:
                    type: string
                    description: IANA timezone identifier (e.g. Europe/Berlin)
                  salutation:
                    type: string
                    description: >-
                      Formal title or greeting (e.g. 'Mr.', 'Ms.', 'Herr',
                      'Frau')
                  status:
                    type: string
                    enum:
                      - reached
                      - not_reached
                      - in_progress
                    description: Current status of the contact
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Contact not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: 'API key must be provided as: Bearer <api_key>'
      x-bearer-format: Bearer

````