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.

Exhibitors list

List exhibitors for a specific event. Use this endpoint when you want a paginated exhibitor catalog scoped to one event, with keyword, country, category, and industry filters.

Endpoint

GET /external/exhibitors/list

Authentication

See Authentication

Success status code

200 OK

Query parameters

NameRequiredTypeNotes
event_idYesstringEvent identifier returned by Lensmor event endpoints.
pageNointegerDefaults to 1.
pageSizeNointegerDefaults to 20; maximum 100.
keywordNostringExhibitor keyword search.
countryNostringCountry filter.
categoryNostring[]Exhibitor category filters; repeated query params are supported.
industryNostring[]Exhibitor industry filters; repeated query params are supported.

Response body

Top-level fields

FieldTypeNotes
itemsobject[]Exhibitors associated with the resolved event.
totalintegerTotal matched exhibitors.
pageintegerCurrent page number.
pageSizeintegerPage size used for this response.
totalPagesinteger0 when total is 0.
hasMorebooleantrue when another page exists.

items[] 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 for the current result.
techStacksstring[]Normalized tech-stack names.
categoriesstring[]Optional exhibitor categories. Present only when non-empty.

Response example

{
  "items": [
    {
      "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": [
        "139574"
      ],
      "techStacks": [
        "React",
        "PostgreSQL"
      ],
      "categories": [
        "Retail",
        "Fintech"
      ]
    }
  ],
  "total": 1,
  "page": 1,
  "pageSize": 20,
  "totalPages": 1,
  "hasMore": false
}

Error responses

  • 400 Bad Request when event_id is invalid.
  • 401 Unauthorized when the API key is missing, malformed, or invalid.
  • 404 Not Found when the target event cannot be resolved.

Notes

  • Use the event_id returned by Lensmor event endpoints when requesting exhibitors for an event.