Skip to main content

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.

Exhibitor profile details

Fetch the profile for a single exhibitor.

Endpoint

GET /external/exhibitors/profile

Authentication

See Authentication

Success status code

200 OK

Query parameters

NameRequiredTypeNotes
exhibitor_idYesstringNumeric-string exhibitor identifier.

Response body

Top-level fields

FieldTypeNotes
idstringLensmor exhibitor identifier.
companyNamestringExhibitor company name.
domainstring or nullExhibitor domain.
descriptionstring or nullExhibitor description.
websitestring or nullWebsite URL.
industrystring or nullIndustry label.
employeeCountinteger or nullEmployee count, when available.
countrystring or nullCountry.
logostring or nullLogo URL.
linkedinUrlstring or nullLinkedIn URL.
fundingRoundstring or nullFunding-round label.
matched_event_idsstring[]Related event identifiers, when available.
eventsobject[]Up to 20 associated events.

events[] fields

FieldTypeNotes
idstringLensmor event identifier.
eventIdstringExternal event identifier.
namestringEvent name.

Response example

{
  "id": "456",
  "companyName": "Acme",
  "domain": "acme.com",
  "description": null,
  "website": "https://acme.com",
  "industry": "Retail Technology",
  "employeeCount": 120,
  "country": "United States",
  "logo": null,
  "linkedinUrl": null,
  "fundingRound": null,
  "matched_event_ids": [],
  "categories": ["Retail"],
  "events": [
    {
      "id": "123",
      "eventId": "139574",
      "name": "Shoptalk"
    }
  ]
}

Error responses

  • 400 Bad Request when exhibitor_id is not a valid numeric string.
  • 401 Unauthorized when the API key is missing, malformed, or invalid.
  • 404 Not Found when the exhibitor cannot be resolved.

Notes

  • matched_event_ids is an empty array when no event scope or match data exists.
  • The embedded events array includes up to 20 associated events.