Skip to main content
POST
/
v2
/
profiles
Visit 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": {
    "profile_url": "<string>",
    "identifier": "<string>"
  }
}
'
{
  "success": true,
  "data": {
    "visited": true,
    "profile_url": "https://www.linkedin.com/in/johndoe"
  },
  "metadata": {
    "action": "visit",
    "account_id": "your-account-id",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}

Overview

Simulates a profile visit. This will appear in the target user’s “Who viewed your profile” section. You can identify the target profile using a profile URL or a public identifier.
This endpoint consumes 1 credit per request.

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 "visit".
params
object

Response

success
boolean
Indicates whether the request was successful.
data
object
metadata
object
{
  "success": true,
  "data": {
    "visited": true,
    "profile_url": "https://www.linkedin.com/in/johndoe"
  },
  "metadata": {
    "action": "visit",
    "account_id": "your-account-id",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}