Skip to main content
Fetch the profile for a single exhibitor. Use this endpoint when you already know the exhibitor identifier and need a profile-style response with related event references.

When to use this endpoint

Use GET /external/exhibitors/profile after an exhibitor has been selected from an event list, company search, or recommendation result. This endpoint is best for showing a company profile card and retrieving the compact event references embedded on that profile. Use Exhibitor related events if you need a paginated event list.

Endpoint

GET /external/exhibitors/profile

Authentication

See Authentication

Success status code

200 OK

Query parameters

NameRequiredTypeNotes
exhibitor_idYesstringNumeric-string exhibitor identifier.

Request example

curl "https://platform.lensmor.com/external/exhibitors/profile?exhibitor_id=456" \
  -H "Authorization: Bearer $LENSMOR_API_KEY"

Response example

{
  "id": "456",
  "companyName": "Acme Retail Systems",
  "domain": "acme.example",
  "description": "Retail analytics platform",
  "website": "https://acme.example",
  "industry": "Retail Technology",
  "employeeCount": 220,
  "country": "United States",
  "logo": null,
  "dataSource": "database",
  "linkedinUrl": null,
  "fundingRound": "Series B",
  "matched_event_ids": [],
  "events": [
    {
      "id": "123",
      "eventId": "139574",
      "name": "NRF 2026"
    }
  ]
}

Response fields

FieldDescription
idExhibitor identifier.
companyName, domain, websiteCompany identity and web presence fields.
description, industry, employeeCount, countryCompany metadata.
logo, linkedinUrl, fundingRoundOptional enrichment fields.
matched_event_idsEvent identifiers connected to the exhibitor when available.
eventsCompact related event references.
events[].eventIdPublic event identifier to use when another endpoint asks for event_id.

Error responses

  • 400 Bad Request
  • 401 Unauthorized
  • 404 Not Found
  • 429 Too Many Requests

Notes

  • This endpoint currently supports exhibitor_id lookup.
  • In embedded event objects, the event identifier is returned as eventId. Use that value when another endpoint asks for event_id.
  • Older examples that imply company_name lookup should not be treated as current behavior.