curl --request POST \
--url https://api.example.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123
}
}
'{
"success": true,
"data": {
"recommendations": [
{
"name": "Jane Doe",
"subtitle": "Co-founder @ Acme Corp",
"profile_url": "https://www.linkedin.com/in/jane-doe-42",
"insight": "John and 35 other mutual connections",
"entity_urn": "urn:li:fsd_discoveryEntityViewModel:(urn:li:fsd_profile:ACoAA...,PYMK)",
"profile_picture": "https://media.licdn.com/dms/image/v2/.../profile.jpg"
}
],
"total_results": 1,
"pagination": {
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "recommendations",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Retrieve network recommendations (people you may know).
curl --request POST \
--url https://api.example.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123
}
}
'{
"success": true,
"data": {
"recommendations": [
{
"name": "Jane Doe",
"subtitle": "Co-founder @ Acme Corp",
"profile_url": "https://www.linkedin.com/in/jane-doe-42",
"insight": "John and 35 other mutual connections",
"entity_urn": "urn:li:fsd_discoveryEntityViewModel:(urn:li:fsd_profile:ACoAA...,PYMK)",
"profile_picture": "https://media.licdn.com/dms/image/v2/.../profile.jpg"
}
],
"total_results": 1,
"pagination": {
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "recommendations",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
count to limit results. Consumes 1 credit per 10 results."recommendations".Show params properties
10. The total available depends on the account’s network — typically 10 to 50 unique profiles per snapshot.Show data properties
Show recommendation properties
{
"success": true,
"data": {
"recommendations": [
{
"name": "Jane Doe",
"subtitle": "Co-founder @ Acme Corp",
"profile_url": "https://www.linkedin.com/in/jane-doe-42",
"insight": "John and 35 other mutual connections",
"entity_urn": "urn:li:fsd_discoveryEntityViewModel:(urn:li:fsd_profile:ACoAA...,PYMK)",
"profile_picture": "https://media.licdn.com/dms/image/v2/.../profile.jpg"
}
],
"total_results": 1,
"pagination": {
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "recommendations",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?