> ## 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 exhibitor profile



## OpenAPI

````yaml /openapi.json get /external/exhibitors/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/exhibitors/profile:
    get:
      tags:
        - Exhibitors
      summary: Get exhibitor profile
      operationId: getExhibitorProfile
      parameters:
        - $ref: '#/components/parameters/ExhibitorIdQuery'
      responses:
        '200':
          description: Exhibitor profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExhibitorProfile'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    ExhibitorIdQuery:
      name: exhibitor_id
      in: query
      required: true
      schema:
        type: string
        minLength: 1
  schemas:
    ExhibitorProfile:
      allOf:
        - $ref: '#/components/schemas/ExhibitorBase'
        - type: object
          properties:
            events:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  eventId:
                    type: string
                  name:
                    type:
                      - string
                      - 'null'
    ExhibitorBase:
      type: object
      required:
        - id
        - companyName
        - matched_event_ids
      properties:
        id:
          type: string
        companyName:
          type:
            - string
            - 'null'
        domain:
          type:
            - string
            - 'null'
        description:
          type:
            - string
            - 'null'
        website:
          type:
            - string
            - 'null'
        industry:
          type:
            - string
            - 'null'
        employeeCount:
          type:
            - integer
            - 'null'
        country:
          type:
            - string
            - 'null'
        logo:
          type:
            - string
            - 'null'
        dataSource:
          type:
            - string
            - 'null'
        linkedinUrl:
          type:
            - string
            - 'null'
        fundingRound:
          type:
            - string
            - 'null'
        matched_event_ids:
          type: array
          items:
            type: string
        isRecommended:
          type: boolean
        recommendationRank:
          type:
            - integer
            - 'null'
        matchStatus:
          type:
            - string
            - 'null'
        matchScore:
          type:
            - number
            - 'null'
        matchTier:
          type:
            - string
            - 'null'
        matchReason:
          type:
            - string
            - 'null'
        categories:
          type: array
          items:
            type: string
      additionalProperties: true
    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

````