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

# Get personnel profile



## OpenAPI

````yaml /openapi.json get /external/personnel/profile
openapi: 3.1.0
info:
  title: Lensmor API
  version: 0.22.0
  description: >-
    Lensmor Event Intelligence API for event discovery, exhibitor research,
    personnel lookup, credits, and profile matching.
servers:
  - url: https://platform.lensmor.com
security:
  - bearerAuth: []
tags:
  - name: Credits
  - name: Actions
  - name: Events
  - name: Exhibitors
  - name: Personnel
  - name: Contacts
  - name: Profile Matching
paths:
  /external/personnel/profile:
    get:
      tags:
        - Personnel
      summary: Get personnel profile
      operationId: getPersonnelProfile
      parameters:
        - $ref: '#/components/parameters/PersonnelIdQuery'
      responses:
        '200':
          description: Personnel profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactItem'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    PersonnelIdQuery:
      name: personnel_id
      in: query
      required: true
      schema:
        type: string
        minLength: 1
        maxLength: 20
  schemas:
    ContactItem:
      type: object
      required:
        - id
        - fullName
        - contactUnlockStatus
      properties:
        id:
          type: string
        fullName:
          type:
            - string
            - 'null'
        title:
          type:
            - string
            - 'null'
        department:
          type:
            - string
            - 'null'
        seniorityLevel:
          type:
            - string
            - 'null'
        linkedinUrl:
          type:
            - string
            - 'null'
        companyName:
          type:
            - string
            - 'null'
        sourceType:
          type:
            - string
            - 'null'
        email:
          type:
            - string
            - 'null'
        contactUnlockStatus:
          type: string
        linkedinActivity:
          type:
            - object
            - 'null'
          properties:
            activityLevel:
              type: string
            isActive:
              type: boolean
            latestPostAt:
              type:
                - string
                - 'null'
        linkedinActivityStatus:
          type:
            - string
            - 'null'
    ApiError:
      type: object
      required:
        - code
        - message
        - errorKey
        - traceId
      properties:
        code:
          type: integer
        message:
          type: string
        errorKey:
          type: string
        traceId:
          type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: User API key

````