Skip to main content
GET
/
v3
/
linkedin-accounts
/
{id}
Get a LinkedIn account
curl --request GET \
  --url https://api.reply.io/v3/linkedin-accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 10,
  "name": "John Doe",
  "status": "enabled",
  "profileUrl": "https://www.linkedin.com/in/johndoe",
  "photoUrl": "https://media.licdn.com/photo.jpg",
  "ownerUserId": 42,
  "accountType": "premium",
  "authType": "cookie",
  "cookieStatus": "valid"
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

LinkedIn account ID

Response

LinkedIn account details

Full representation of a LinkedIn account.

id
integer
read-only

Unique identifier for the LinkedIn account

name
string

Display name of the LinkedIn account

status
enum<string>

Current status of the account

Available options:
disabled,
enabled,
dailyLimitReached,
cookieInvalid
profileUrl
string | null

URL to the LinkedIn profile

photoUrl
string | null

URL to the profile photo

ownerUserId
integer
read-only

ID of the user who owns this account

accountType
enum<string> | null

Type of LinkedIn account

Available options:
public,
salesNavigator,
premium
authType
enum<string>

Authentication method used

Available options:
cookie,
credentials

Status of the LinkedIn authentication cookie

Available options:
notValid,
valid,
neverValidated
usage
LinkedInAccountUsage · object

Daily usage statistics for a LinkedIn account.

Example:
{
"connectionRequests": 10,
"messages": 25,
"salesNavigatorConnectionRequests": 5,
"inMails": 3,
"viewProfiles": 50,
"likeRecentPosts": 15,
"detects": 30,
"revokeConnections": 2,
"endorseSkills": 5,
"followProfile": 8
}
limits
LinkedInAccountLimits · object

Daily limits configuration for a LinkedIn account.

Example:
{
"limitsMode": "Fixed",
"fixedMax": {
"dailyDetectCount": 100,
"dailySendConnectionRequestCount": 20,
"dailySendMessageCount": 50,
"dailySendSalesNavigatorConnectionRequestCount": 10,
"dailyInMailCount": 10,
"dailyViewProfileCount": 80,
"dailyLikeRecentPostsCount": 30,
"dailyRevokeConnectionCount": 10,
"dailyEndorsedSkillsCount": 10,
"dailyFollowedProfilesCount": 20
}
}
userLimitValues
LinkedInAccountLimitsValues · object

Individual daily limit values for LinkedIn automation actions.

Example:
{
"dailyDetectCount": 100,
"dailySendConnectionRequestCount": 20,
"dailySendMessageCount": 50,
"dailySendSalesNavigatorConnectionRequestCount": 10,
"dailyInMailCount": 10,
"dailyViewProfileCount": 80,
"dailyLikeRecentPostsCount": 30,
"dailyRevokeConnectionCount": 10,
"dailyEndorsedSkillsCount": 10,
"dailyFollowedProfilesCount": 20
}
revokeSettings
LinkedInAccountRevokeSettings · object

Connection revocation settings for a LinkedIn account.

Example:
{ "enabled": true, "periodDays": 30 }
voiceProfile
LinkedInAccountVoiceProfile · object

Voice profile associated with a LinkedIn account.

Example:
{
"voiceProfileId": 5,
"voiceProfileName": "Professional tone",
"isDefault": true
}