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

# Get contact details

> Retrieve a single contact.

Retrieves a single contact, including its company identifier, its CRM URL and, when available, its AI-generated summary.


## OpenAPI

````yaml GET /v1/contacts/{contactId}
openapi: 3.1.0
info:
  title: Claap API
  description: Development documentation
  version: 0.0.0
servers:
  - url: https://api.claap.io/
security:
  - ApiKey: []
paths:
  /v1/contacts/{contactId}:
    get:
      description: Retrieve a single contact.
      operationId: getV1ContactsByContactId
      parameters:
        - in: path
          name: contactId
          schema:
            type: string
            description: Contact identifier
          required: true
      responses:
        '200':
          description: Contact was successfully retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      contact:
                        $ref: '#/components/schemas/ApiContact'
                    required:
                      - contact
                required:
                  - result
        '404':
          description: Contact was not found.
components:
  schemas:
    ApiContact:
      type: object
      properties:
        contactId:
          type: string
          description: The contact identifier.
        companyId:
          type: string
          description: The identifier of the company the contact belongs to.
        createdAt:
          type: string
          description: The contact creation date (ISO datetime).
        crmUrl:
          type: string
          description: The URL of the contact in the connected CRM.
        email:
          type: string
          description: The contact email address.
        isExternal:
          type: boolean
          description: >-
            Whether the contact is external to the workspace. False when the
            contact is bound to a workspace user.
        name:
          type: string
          description: The contact name.
        summary:
          type: object
          properties:
            markdown:
              type: string
              description: The AI-generated contact summary, in Markdown.
          required:
            - markdown
          description: >-
            The AI-generated contact summary. Absent until it has been generated
            for the first time.
        updatedAt:
          type: string
          description: The contact last update date (ISO datetime).
        userId:
          type: string
          description: >-
            The identifier of the workspace user the contact is bound to.
            Contacts bound to a workspace user cannot be edited.
      required:
        - contactId
        - createdAt
        - email
        - name
        - updatedAt
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-Claap-Key

````