Get event attendees
Fetch the list of people who have RSVPed or are attending a LinkedIn event. Returns profile information for each attendee including name, headline, location, profile picture, and connection degree. Supports pagination (LinkedIn fixes page size at 10). Accepts a numeric event ID, a full LinkedIn event URL, or a search URL containing an eventAttending parameter.
/events/{eventId}/attendeesCode Examples
curl -X GET 'https://api.connectsafely.ai/linkedin/events/7453424948037070848/attendees?start=0&count=10' \ -H 'Authorization: Bearer <your_api_key>'Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
eventId | path | string | Yes | LinkedIn event ID (numeric), full event URL, or search URL with eventAttending parameter |
accountId | query | string | No | LinkedIn account ID. If omitted, uses the default account. |
start | query | integer | No | Pagination offset (0-indexed). Increment by 10 to paginate. Default: 0 |
count | query | integer | No | Number of attendees to return per page (max 100, LinkedIn typically returns 10). Default: 10 |
Responses
| Status | Description |
|---|---|
| 200 | Event attendees retrieved successfully |
| 400 | Bad request - invalid event ID or URL |
| 401 | Unauthorized |
| 502 | LinkedIn Voyager queryId is stale and needs to be refreshed |
| 500 | Server error |
200 Response Parameters
| Name | Type | Description |
|---|---|---|
success | boolean | Whether the request was successful |
accountId | string | LinkedIn account ID used for the request |
eventId | string | Resolved numeric event ID |
attendees | array | List of event attendees |
attendees[].profileUrn | string | LinkedIn tracking URN for the profile |
attendees[].fsdProfileUrn | string | FSD profile URN (e.g. urn:li:fsd_profile:ABCDE) |
attendees[].publicIdentifier | string | Profile vanity slug (e.g. jane-doe) |
attendees[].fullName | string | Attendee full name |
attendees[].headline | string | Professional headline |
attendees[].location | string | Location from profile |
attendees[].profilePictureUrl | string | URL of the profile picture |
attendees[].profileUrl | string | Full LinkedIn profile URL |
attendees[].connectionDegree | string | Connection degree (DISTANCE_1, DISTANCE_2, DISTANCE_3) |
paging | object | Pagination information |
paging.start | integer | Current offset |
paging.count | integer | Requested page size |
paging.total | integer | Total number of attendees (may be absent) |
200 Example
{
"success": true,
"accountId": "acc_12345",
"eventId": "7453424948037070848",
"attendees": [
{
"profileUrn": "urn:li:member:123456789",
"fsdProfileUrn": "urn:li:fsd_profile:ABCDE",
"publicIdentifier": "jane-doe",
"fullName": "Jane Doe",
"headline": "VP of Marketing at Acme Corp",
"location": "San Francisco Bay Area",
"profilePictureUrl": "https://media.licdn.com/dms/image/example.jpg",
"profileUrl": "https://www.linkedin.com/in/jane-doe",
"connectionDegree": "DISTANCE_2"
}
],
"paging": {
"start": 0,
"count": 10,
"total": 142
}
}400 Example
{
"error": "Invalid LinkedIn event ID or URL: bad-input",
"success": false
}502 Example
{
"error": "LinkedIn Voyager queryId for event attendees is stale and needs to be refreshed",
"code": "QUERY_ID_STALE",
"success": false
}500 Example
{
"error": "Failed to fetch event attendees",
"success": false
}LinkedIn Events API
Fetch attendees from LinkedIn events via API. Extract attendee profiles for lead generation, event follow-up, and targeted outreach campaigns.
Sales Navigator API
LinkedIn Sales Navigator endpoints supported by ConnectSafely — lead and account search, SSI score, InMail credits, and auto-detected conversations. Requires an active Sales Navigator subscription on the LinkedIn account.
