APILinkedIn Account
Get Warmup Status
Check if a LinkedIn account has completed its warmup period. New accounts require gradual activity increase to avoid restrictions.
GET
/linkedin/account/{accountId}/warmupGet Warmup Status
Check if a LinkedIn account has completed its warmup period. Returns warmup status (not_started, in_progress, completed, stale), days active, and total actions performed.
Authentication requiredLinkedIn Account
Code Examples
curl -X GET 'https://api.connectsafely.ai/linkedin/account/acc_123456789/warmup' \ -H 'Authorization: Bearer <your_api_key>'Parameters
| Name | Type | Required | Description |
|---|---|---|---|
accountId | string | Yes | The LinkedIn account ID |
Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"success": true,
"accountId": "acc_123456789",
"accountName": "John Doe",
"warmupStatus": {
"isWarmedUp": true,
"commentCount": 45,
"reactionCount": 120,
"totalEngagements": 165,
"tier": "high",
"recommendedStartMode": "normal",
"reason": "Account has sufficient engagement history"
}
}Warmup Tiers
| Tier | Description |
|---|---|
high | Account has high engagement, ready for all operations |
medium | Account has moderate engagement, proceed with caution |
low | Account needs more warmup before high-volume operations |
Usage Notes
- Account Safety: New accounts need to build engagement history before automated operations
- Recommended Mode: Follow the
recommendedStartModefor safe automation - Tier System: Higher tiers indicate safer accounts for automation
- Persistence: Once an account reaches "warmed up" status, it stays warmed up permanently
Get Account Activity History
Retrieve paginated history of all activities performed by a LinkedIn account including comments, reactions, and other engagements.
Refresh Warmup Status
Force recalculation of warmup status for a LinkedIn account. Use this after manual activities or to update stale warmup data.
