List Invitations
curl --request POST \
--url https://api.linkupapi.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123,
"offset": 123,
"invitation_type": "<string>"
}
}
'{
"success": true,
"data": {
"invitations": [
{
"entity_urn": "urn:li:invitation:123456789",
"shared_secret": "abcdef12-3456-7890-abcd-ef1234567890",
"sender": {
"first_name": "Alice",
"last_name": "Johnson",
"headline": "Data Scientist",
"linkedin_url": "https://www.linkedin.com/in/alicejohnson",
"profile_picture_url": "https://media.licdn.com/dms/image/..."
},
"invitation_type": "CONNECTION",
"sent_time": "1d",
"sent_time_days": 1
}
],
"total_results": 1,
"total_available_results": 26,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_invitations",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Network
List Invitations
Retrieve a paginated list of pending invitations received.
POST
/
v2
/
network
List Invitations
curl --request POST \
--url https://api.linkupapi.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123,
"offset": 123,
"invitation_type": "<string>"
}
}
'{
"success": true,
"data": {
"invitations": [
{
"entity_urn": "urn:li:invitation:123456789",
"shared_secret": "abcdef12-3456-7890-abcd-ef1234567890",
"sender": {
"first_name": "Alice",
"last_name": "Johnson",
"headline": "Data Scientist",
"linkedin_url": "https://www.linkedin.com/in/alicejohnson",
"profile_picture_url": "https://media.licdn.com/dms/image/..."
},
"invitation_type": "CONNECTION",
"sent_time": "1d",
"sent_time_days": 1
}
],
"total_results": 1,
"total_available_results": 26,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_invitations",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Overview
Returns a paginated list of pending connection invitations received by the account. Pagination is offset-based — setcount for the page size and offset to skip ahead.
This endpoint consumes 1 credit per 50 results returned. LinkedIn returns up to 100 invitations per internal request, so larger
count values trigger multiple upstream calls automatically.Request
Your API key for authentication.
The unique identifier of the account to use.
Must be
"list_invitations".Show params properties
Show params properties
Number of invitations to return. Defaults to
10. Capped at 1000 per call — to retrieve more, paginate with offset.Zero-indexed offset into the invitations list. Defaults to
0. Use pagination.next_offset from a previous response to fetch the next page.Filter by invitation type (e.g.
"CONNECTION"). Omit for all types.Response
Indicates whether the request was successful.
Show data properties
Show data properties
List of invitation objects with
entity_urn, shared_secret, sender info, type, and timing.Number of invitations returned in this response.
Total number of pending invitations available on the account.
Show pagination properties
Show pagination properties
Offset of the first invitation in this response.
Number of invitations returned (mirrors
total_results).Offset to send as
offset in the next request. null when there are no more results.true if more invitations are available beyond this batch.Maximum batch size used per upstream request.
Number of internal upstream batches consumed to assemble this response.
{
"success": true,
"data": {
"invitations": [
{
"entity_urn": "urn:li:invitation:123456789",
"shared_secret": "abcdef12-3456-7890-abcd-ef1234567890",
"sender": {
"first_name": "Alice",
"last_name": "Johnson",
"headline": "Data Scientist",
"linkedin_url": "https://www.linkedin.com/in/alicejohnson",
"profile_picture_url": "https://media.licdn.com/dms/image/..."
},
"invitation_type": "CONNECTION",
"sent_time": "1d",
"sent_time_days": 1
}
],
"total_results": 1,
"total_available_results": 26,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_invitations",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?
⌘I