Skip to main content
GET
/
linkedin-accounts
/
{id}
Get a LinkedIn account
curl --request GET \
  --url https://api.reply.io/v3/linkedin-accounts/{id} \
  --header 'X-API-Key: <api-key>'
{
  "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"
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

LinkedIn account ID

Response

LinkedIn account details

Full representation of a LinkedIn account.

id
integer
required

Unique identifier for the LinkedIn account

name
string
required

Display name of the LinkedIn account

status
enum<string>
required

Current status of the account

Available options:
Disabled,
Enabled,
DailyLimitReached,
CookieInvalid
authType
enum<string>
required

Authentication method used

Available options:
Cookie,
Credentials

Status of the LinkedIn authentication cookie

Available options:
NotValid,
Valid,
NeverValidated
profileUrl
string | null

URL to the LinkedIn profile

photoUrl
string | null

URL to the profile photo

ownerUserId
integer

ID of the user who owns this account

accountType
enum<string> | null

Type of LinkedIn account

Available options:
Public,
SalesNavigator,
Premium
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
}