curl --request POST \
--url https://api.example.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123,
"offset": 123
}
}
'{
"success": true,
"data": {
"viewers": [
{
"title": "Someone at The Hive Company",
"image_url": "https://media.licdn.com/media/AAYQBAT4...",
"is_blurred": true,
"cta_action": "View",
"profile_url": null,
"entity_urn": null
},
{
"title": "Jane Doe",
"image_url": "https://media.licdn.com/dms/image/v2/...",
"is_blurred": false,
"cta_action": "Connect",
"profile_url": "https://www.linkedin.com/in/janedoe",
"entity_urn": "urn:li:fsd_profile:ACoAA..."
}
],
"total_results": 2,
"pagination": {
"offset": 0,
"count": 2,
"total": 87,
"has_more": true,
"next_offset": 10
}
},
"metadata": {
"action": "get_viewers",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Retrieve the list of people who recently viewed your profile.
curl --request POST \
--url https://api.example.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123,
"offset": 123
}
}
'{
"success": true,
"data": {
"viewers": [
{
"title": "Someone at The Hive Company",
"image_url": "https://media.licdn.com/media/AAYQBAT4...",
"is_blurred": true,
"cta_action": "View",
"profile_url": null,
"entity_urn": null
},
{
"title": "Jane Doe",
"image_url": "https://media.licdn.com/dms/image/v2/...",
"is_blurred": false,
"cta_action": "Connect",
"profile_url": "https://www.linkedin.com/in/janedoe",
"entity_urn": "urn:li:fsd_profile:ACoAA..."
}
],
"total_results": 2,
"pagination": {
"offset": 0,
"count": 2,
"total": 87,
"has_more": true,
"next_offset": 10
}
},
"metadata": {
"action": "get_viewers",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
count for the page size and offset to skip ahead.
is_blurred: true and lack profile_url."get_viewers".Show data properties
Show viewer item properties
"Public Speaker in the Staffing and Recruiting industry from London" for blurred viewers, or the person’s full name when revealed).true when LinkedIn has anonymized the viewer (Premium quota exceeded or visitor used Private mode)."View", "Connect").null when is_blurred is true.null when is_blurred is true.Show pagination properties
total_results).0 when not exposed).true if more viewers are available beyond this batch.offset in the next request. null when exhausted.{
"success": true,
"data": {
"viewers": [
{
"title": "Someone at The Hive Company",
"image_url": "https://media.licdn.com/media/AAYQBAT4...",
"is_blurred": true,
"cta_action": "View",
"profile_url": null,
"entity_urn": null
},
{
"title": "Jane Doe",
"image_url": "https://media.licdn.com/dms/image/v2/...",
"is_blurred": false,
"cta_action": "Connect",
"profile_url": "https://www.linkedin.com/in/janedoe",
"entity_urn": "urn:li:fsd_profile:ACoAA..."
}
],
"total_results": 2,
"pagination": {
"offset": 0,
"count": 2,
"total": 87,
"has_more": true,
"next_offset": 10
}
},
"metadata": {
"action": "get_viewers",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?