GET exhibitors/{eventId}/list

GET /api/v2/exhibitors/{eventId}/list

Returns a paginated list of exhibitors for a given event, with full profile data for each exhibitor. Supports incremental synchronisation via a timestamp parameter.


Authentication

Authorization: Bearer <your_api_key>

Endpoint

GET /api/v2/exhibitors/{eventId}/list

Path Parameters

Parameter

Type

Required

Description

eventId

integer

Yes

The ID of the event (in the URL path)


Query Parameters

Parameter

Type

Required

Default

Description

limit

integer

No

100

Items per page. Maximum 300

page

integer

No

1

Page number

timestamp

integer

No

Returns only exhibitors updated after this Unix timestamp


Key exhibitor object fields

Field

Type

Description

id

integer

Exhibitor ID

admin_in

integer

Account ID of the exhibitor owner

external_id

string or null

External ID

name

string

Display name

email

string

Primary email

logo

string or null

Logo image URL

country

object or null

Country object { id, name, iso, iso3 }

city

object or null

City object { id, name }

exhibitor_category

integer or null

Exhibitor category ID

product_categories_ids

integer[] or null

Product category IDs

tags

string[]

Tag names

halls

object[]

Hall objects from the floor plan

stands

object[]

Stand objects from the floor plan

members

integer[]

Account IDs of team members

is_parent_exhibitor

boolean

Whether this is a parent exhibitor

custom_fields

object

Event-specific custom field values


Example Request

Bash
curl -X GET "https://your-event-domain.com/api/v2/exhibitors/7/list?limit=100&page=1" \
  -H "Authorization: Bearer your_api_key_here"