Facebook Pixel
APILinkedIn Events

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/7453424948037070848/attendees?start=0&count=10' \
-H 'Authorization: Bearer <your_api_key>'

Parameters

NameInTypeRequiredDescription
eventIdpathstringYesLinkedIn event ID (numeric), full event URL, or search URL with eventAttending parameter
accountIdquerystringNoLinkedIn account ID. If omitted, uses the default account.
startqueryintegerNoPagination offset (0-indexed). Increment by 10 to paginate. Default: 0
countqueryintegerNoNumber of attendees to return per page (max 100, LinkedIn typically returns 10). Default: 10

Responses

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

200 Response Parameters

NameTypeDescription
successbooleanWhether the request was successful
accountIdstringLinkedIn account ID used for the request
eventIdstringResolved numeric event ID
attendeesarrayList of event attendees
attendees[].profileUrnstringLinkedIn tracking URN for the profile
attendees[].fsdProfileUrnstringFSD profile URN (e.g. urn:li:fsd_profile:ABCDE)
attendees[].publicIdentifierstringProfile vanity slug (e.g. jane-doe)
attendees[].fullNamestringAttendee full name
attendees[].headlinestringProfessional headline
attendees[].locationstringLocation from profile
attendees[].profilePictureUrlstringURL of the profile picture
attendees[].profileUrlstringFull LinkedIn profile URL
attendees[].connectionDegreestringConnection degree (DISTANCE_1, DISTANCE_2, DISTANCE_3)
pagingobjectPagination information
paging.startintegerCurrent offset
paging.countintegerRequested page size
paging.totalintegerTotal 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
}