Skip to main content

Exhibitor related events

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

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.

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
}

Error responses

  • 400 Bad Request
  • 401 Unauthorized
  • 404 Not Found

Notes

  • Event items reuse the shared public event-item shape.
  • Pagination behavior follows the shared Pagination conventions.
  • Request-side exhibitor_id is snake_case, while response-side identifiers remain id and eventId.
  • This endpoint requires exhibitor_id; if you only have company_name, use POST /external/exhibitors/search-events.