Using live mode unsafely puts your account at serious risk—you may be temporarily rate limited or even banned from LinkedIn. Having your account blocked due to unsafe usage is not a possibility, it’s only a matter of time.
Rules of thumb 👍
- Spread actions over time — never fire everything at once.
- Invitations — respect a daily cap and space each attempt by tens of seconds to minutes, with randomized gaps.
- Profile visits — distribute across the day; delay between each live call.
- Search / pagination — always wait between each page (each follow-up request using
X-Pagination-Nextor the next cursor). - No parallel live calls for the same identity on risky outreach—keep the pipeline sequential (one in flight, then the next).
- Random + jitter — add variability to every delay so intervals are not perfectly periodic.
Cold Account
A cold account is one with little recent LinkedIn activity: new identity, long idle period, or a profile that rarely browses, searches, or messages. LinkedIn’s systems weigh sudden spikes more heavily than steady habits—going from near-zero to high-volume live API traffic in a day is one of the riskiest patterns. Ramp up over several days instead of jumping to your target throughput immediately:- Days 1–2 — Keep volume very low (a handful of benign actions if you must: light reads, spaced visits, minimal outreach). Use generous gaps between calls—often longer than the suggested minimum spacing table—and no parallelism for the same identity.
- Days 3–5 — Gradually increase daily call count and breadth (more pages, more profiles), still with jitter and sequential execution. If you see
429, checkpoints, or unusual friction, slow down and extend the ramp. - After ~a week of stable, human-like patterns — You can approach your intended steady-state spacing and volume, still respecting daily caps, invitation limits, and the Rules of thumb guidance above.
Suggested minimum spacing (live)
These are starting points for time between successive live calls of the same type for the same identity. Adjust per account and monitoring; when in doubt, ~60 s is a reasonable default.
Combine these delays with jitter (see example below), not fixed sleep only.
Simple Safe pattern: sleep + jitter (JavaScript)
After each livePOST completes, wait base delay + random jitter before the next call:
waitBetweenLiveCalls with a minimum timeframe after every page (after each response before following X-Pagination-Next).
LinkedIn Commercial Limits
Keep in mind that LinkedIn has multiple mechanisms in place to detect and flag activity that doesn’t appear human. These safeguards are why we enforce daily limits on async and scheduled runs—to ensure security and reduce the risk of triggering LinkedIn’s automated protections.A single limit may be consumed by multiple actions. Use the Get Identity Limits endpoint to see all limits that apply to a specific action.
Identity Ramp-Up
When a LinkedIn identity is newly connected, its effective capacity ramps up gradually instead of starting at the full quotas in the limits table. Ramp-up applies to all limits tied to that identity (connection requests, visits, messages, searches, etc.). The full capacity is the value shown in the quotas table for that identity’s account level.5-day ramp-up
Full capacity is split into 5 equal steps. Each day after the identity is connected, one additional fifth is unlocked:
At the end of day 5, the identity reaches full capacity for all limits.
Identity rate limits (all actions combined)
These caps apply to the identity as a whole, not per action. All actions executed by the same identity share these windows — they are global throughput limits on total activity.Action rate limits
Each limit defines how many times a specific type of action can be executed within a defined time window.Limit ↔ Actions & Quotas
Important Operational Notes
- New identities ramp up to full capacity over 5 days and, on day 1, over the first 5 hours (see New identity ramp-up).
- Limits are rolling windows, not calendar-based.
- Per-minute caps apply even if the daily quota is not exhausted.
- Some actions consume multiple limits simultaneously (e.g., visit + enrichment).
- Sales Navigator accounts have significantly higher visit/search quotas.
- InMail limit works on a ~31-day window, not daily.
- Default identity rate limits (above) are shared across all actions on the same identity. Per-action quotas in the limits table below (
limit_valueper limit type) apply separately in addition to those global caps.
Related
- Execution modes overview — when to prefer live vs async vs schedule
- Pagination — live mode and
X-Pagination-Next - Rate limits
- LinkedIn limits

