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
| Name | Required | Type | Notes |
|---|
exhibitor_id | Yes | string | Numeric-string exhibitor identifier. |
Response body
Top-level fields
| Field | Type | Notes |
|---|
id | string | Lensmor exhibitor identifier. |
companyName | string | Exhibitor company name. |
domain | string or null | Exhibitor domain. |
description | string or null | Exhibitor description. |
website | string or null | Website URL. |
industry | string or null | Industry label. |
employeeCount | integer or null | Employee count, when available. |
country | string or null | Country. |
logo | string or null | Logo URL. |
linkedinUrl | string or null | LinkedIn URL. |
fundingRound | string or null | Funding-round label. |
matched_event_ids | string[] | Related event identifiers, when available. |
events | object[] | Up to 20 associated events. |
events[] fields
| Field | Type | Notes |
|---|
id | string | Lensmor event identifier. |
eventId | string | External event identifier. |
name | string | Event 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.