Get Account Status by ID
Get the status of a specific LinkedIn account by its ID
GET
/linkedin/account/{accountId}/statusGet Account Status by ID
Get the status of a specific LinkedIn account by its ID
Authentication requiredLinkedIn Account
Code Examples
curl -X GET 'https://api.connectsafely.ai/linkedin/account/acc_123456789/status' \ -H 'Authorization: Bearer <your_api_key>'Parameters
| Name | Type | Required | Description |
|---|---|---|---|
accountId | string | Yes | The LinkedIn account ID to check |
Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"id": "acc_123456789",
"firstName": "John",
"lastName": "Doe",
"publicId": "john-doe-123",
"platform": "linkedin",
"status": "FREE",
"enabled": true,
"lastUsed": "2024-01-15T10:30:00.000Z",
"hasTokens": true
}