ApiUncategorized
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.
GET
/events/{eventId}/attendeesAuthentication requiredEvents
Code Examples
curl -X GET 'https://api.connectsafely.ai/linkedin/events/<eventId>/attendees' \ -H 'Authorization: Bearer <your_api_key>'Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
eventId | path | Yes | string | LinkedIn event ID (numeric), full event URL, or search URL with eventAttending parameter. |
accountId | query | No | string | LinkedIn account ID. If omitted, uses the default account. |
start | query | No | integer | Pagination offset (0-indexed). Increment by 10 to paginate. |
count | query | No | integer | Number of attendees to return per page (max 100, LinkedIn typically returns 10). |
Request Body
No request body.
Responses
| Status | Description |
|---|---|
| 200 | Event attendees retrieved successfully |
| 400 | Bad request - invalid event ID or URL |
| 401 | Unauthorized |
| 500 | Server error |
| 502 | LinkedIn Voyager queryId is stale and needs to be refreshed |
200 Response Parameters
| Name | Type | Description |
|---|---|---|
success | boolean | |
accountId | string | LinkedIn account ID used |
eventId | string | Resolved numeric event ID |
attendees | array | |
paging | object |
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 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string | |
success | boolean |
400 Example
{
"error": "example_value",
"success": true
}401 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string |
401 Example
{
"error": "example_value"
}500 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string |
500 Example
{
"error": "example_value"
}502 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string | |
code | string | |
success | boolean |
502 Example
{
"error": "example_value",
"code": "example_value",
"success": true
}