Skip to main content
POST
/
v2
/
profiles
Get Profile Viewers
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"
  }
}

Overview

Returns the list of users who recently viewed the authenticated account’s profile (Premium “Who Viewed My Profile” data). Pagination is offset-based — set count for the page size and offset to skip ahead.
This endpoint consumes 1 credit per 10 results returned. Some viewers can be blurred (LinkedIn anonymizes non-Premium-tier visitors when out of quota); they appear with is_blurred: true and lack profile_url.

Request

x-api-key
string
required
Your API key for authentication.
account_id
string
required
The unique identifier of the account to use.
action
string
required
Must be "get_viewers".
params
object

Response

success
boolean
Indicates whether the request was successful.
data
object
metadata
object
{
  "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"
  }
}