Facebook Pixel
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}/attendees
Authentication requiredEvents

Code Examples

curl -X GET 'https://api.connectsafely.ai/linkedin/events/<eventId>/attendees' \
-H 'Authorization: Bearer <your_api_key>'

Parameters

NameInRequiredTypeDescription
eventIdpathYesstringLinkedIn event ID (numeric), full event URL, or search URL with eventAttending parameter.
accountIdqueryNostringLinkedIn account ID. If omitted, uses the default account.
startqueryNointegerPagination offset (0-indexed). Increment by 10 to paginate.
countqueryNointegerNumber of attendees to return per page (max 100, LinkedIn typically returns 10).

Request Body

No request body.

Responses

StatusDescription
200Event attendees retrieved successfully
400Bad request - invalid event ID or URL
401Unauthorized
500Server error
502LinkedIn Voyager queryId is stale and needs to be refreshed

200 Response Parameters

NameTypeDescription
successboolean
accountIdstringLinkedIn account ID used
eventIdstringResolved numeric event ID
attendeesarray
pagingobject

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

NameTypeDescription
errorstring
successboolean

400 Example

{
  "error": "example_value",
  "success": true
}

401 Response Parameters

NameTypeDescription
errorstring

401 Example

{
  "error": "example_value"
}

500 Response Parameters

NameTypeDescription
errorstring

500 Example

{
  "error": "example_value"
}

502 Response Parameters

NameTypeDescription
errorstring
codestring
successboolean

502 Example

{
  "error": "example_value",
  "code": "example_value",
  "success": true
}