Skip to main content
List events related to a single exhibitor. Use this endpoint when you want the event history or current event associations for one exhibitor profile.

When to use this endpoint

Use GET /external/exhibitors/events when you already have an exhibitor_id and need a paginated event list for that company. If you only have a company name, use Exhibitor event search. If you need the company profile first, use Exhibitor profile details.

Endpoint

GET /external/exhibitors/events

Authentication

See Authentication

Success status code

200 OK

Query parameters

NameRequiredTypeNotes
exhibitor_idYesstringNumeric-string exhibitor identifier.
pageNointegerDefaults to 1.
pageSizeNointegerDefaults to 20; maximum 100.

Request example

curl "https://platform.lensmor.com/external/exhibitors/events?exhibitor_id=456&page=1&pageSize=20" \
  -H "Authorization: Bearer $LENSMOR_API_KEY"

Response example

{
  "items": [
    {
      "id": "123",
      "eventId": "139574",
      "name": "NRF 2026",
      "nickname": null,
      "description": "Retail industry event",
      "url": "https://example.com/events/nrf-2026",
      "dateStart": "2026-01-12",
      "dateEnd": "2026-01-15",
      "venue": "Javits Center",
      "city": "New York",
      "region": "NY",
      "country": "United States",
      "exhibitorCount": 950,
      "image": null,
      "dataSource": "database"
    }
  ],
  "total": 12,
  "page": 1,
  "pageSize": 20,
  "totalPages": 1,
  "hasMore": false
}

Response fields

FieldDescription
itemsEvents associated with the exhibitor.
id, eventIdEvent identifiers returned with each event.
name, nickname, description, urlEvent display and source fields.
dateStart, dateEndEvent date range.
venue, city, region, countryLocation metadata.
exhibitorCountKnown exhibitor count when available.
image, dataSourceMedia and source metadata.
total, page, pageSize, totalPages, hasMorePagination metadata.

Error responses

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

Notes

  • Event items reuse the standard event-item response shape.
  • Pagination behavior follows the shared Pagination conventions.
  • This endpoint requires exhibitor_id; if you only have company_name, use POST /external/exhibitors/search-events.