Get Warmup Status
Check the warmup status of a LinkedIn account
GET
/linkedin/account/{accountId}/warmupGet Warmup Status
Check the warmup status of a LinkedIn account to determine if it's ready for high-volume operations
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
