event_attendees
GET /events/:eventID/attendees — List event attendees
List the confirmed attendees of an event — DCers holding a valid paid ticket OR a valid/maybe RSVP status. Refunded/canceled tickets are excluded. Hidden and guest profiles are filtered out.
Profiles returned use the same shape as the rest of the API (GET /profile-match, GET /trips/:tripID/discovery, etc.) — full public-other-person view including businessName and expertise, plus privacy-gated annualRevenue + teamSize where shared. Social handles are not included.
Access: any active DCer can view event attendees, matching the in-app attendee tab.
Pagination: newest first; page with ?limit= (1-100, default 100) plus the opaque ?cursor= from the previous response's nextCursor (null when there are no more).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (1-100). | |
| cursor | No | Cursor from a previous response's `nextCursor`. Pass to fetch the next page. | |
| eventID | Yes | The event ID |