When to use this endpoint
UseGET /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 AuthenticationSuccess status code
200 OK
Query parameters
| Name | Required | Type | Notes |
|---|---|---|---|
exhibitor_id | Yes | string | Numeric-string exhibitor identifier. |
page | No | integer | Defaults to 1. |
pageSize | No | integer | Defaults to 20; maximum 100. |
Request example
Response example
Response fields
| Field | Description |
|---|---|
items | Events associated with the exhibitor. |
id, eventId | Event identifiers returned with each event. |
name, nickname, description, url | Event display and source fields. |
dateStart, dateEnd | Event date range. |
venue, city, region, country | Location metadata. |
exhibitorCount | Known exhibitor count when available. |
image, dataSource | Media and source metadata. |
total, page, pageSize, totalPages, hasMore | Pagination metadata. |
Error responses
400 Bad Request401 Unauthorized404 Not Found429 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 havecompany_name, usePOST /external/exhibitors/search-events.