Follow LinkedIn Profile

LinkedIn Auto Follow follows or unfollows a list of LinkedIn profiles.

Edges is not related to LinkedIn and is not an official LinkedIn product.

API Endpoint

POST/v1/actions/linkedin-follow-profile/run/live

Parameters

Input Parameters

Configuration Parameters

Integration Parameters

Guide

What Follow LinkedIn Profile does

Follow LinkedIn Profile follows — or unfollows — a LinkedIn member so their posts enter your feed without requiring a connection request. You get a single-record primitive you can drop into scoring, nurture, or monitoring workflows when a pending connection would be premature.

It runs on the LinkedIn level and acts through your connected LinkedIn session, so every follow is attributable to your account.

How it works

You pass a profile URL or member ID and a follow or unfollow directive. Edges signs the request with your authenticated LinkedIn session, hits LinkedIn's follow endpoint, and returns a typed status payload. The action runs on Edges infrastructure with safe pacing, so you do not need to handle cookies, retries, or throttling yourself.

The operation is synchronous: by the time the run completes, the follow state has flipped and LinkedIn will start (or stop) surfacing that member's activity in your feed.

When to use Follow LinkedIn Profile

Reach for Follow LinkedIn Profile when you want visibility into someone's activity without the commitment of a connection request. Following is the lighter touch: no inbox, no invitation quota, and it feeds the LinkedIn messaging & outreach API workflow by making their posts available for you to react to later.

It is especially useful for top-of-funnel warmup, where you want to signal interest and build familiarity before the first direct outreach.

Use cases

  • Champion warmup. Auto-follow newly identified champions at target accounts so their posts show up in your feed for contextual engagement.
  • Event nurture. Follow registrants of an event you are running to stay visible without flooding their inbox with invites.
  • Competitive monitoring. Follow key executives at competitors to catch product and hiring signals early.
  • Content-led ABM. Follow decision-makers at ABM accounts as a soft signal before any direct outreach.
  • Unfollow cleanup. Unfollow low-signal accounts in bulk to keep your feed relevant to the people who actually matter.

Best practices

  • Gate on a filter first. Following every inbound name degrades feed quality. Apply title, company, or scoring filters before Follow LinkedIn Profile fires.
  • Pair with engagement actions. Follow alone is invisible to the target — chain Like LinkedIn Post or LinkedIn Comment Post on their activity to convert the follow into a touchpoint.
  • Use unfollow for hygiene. Rotate follows on a schedule so your feed stays composed of active, relevant members.
  • Stay within LinkedIn activity guardrails. Edges handles pacing; keep combined manual and automated follow activity on the same account reasonable.

Common questions

How many profiles can I follow per run?

One per run. Follow LinkedIn Profile is a per-record primitive, meant to sit inside triggered or per-row flows. For larger sweeps, loop over a list source like Extract LinkedIn Post Likers.

Does Follow LinkedIn Profile use my LinkedIn account or a shared pool?

Your LinkedIn account. You connect LinkedIn to Edges once, and every follow executes through that authenticated session with full activity attribution.

Can I chain Follow LinkedIn Profile with other Edges actions?

Yes. Typical chains pair the follow with Like LinkedIn Post or Connect LinkedIn Profile to build a multi-touch warmup sequence.

Get started

Add Follow LinkedIn Profile to any triggered warmup flow in Edges, or call it directly from the Edges API. Browse the full Actions library for the engagement primitives you can chain next.

Code Examples

bash
curl -X POST "https://api.edges.run/v1/actions/linkedin-follow-profile/run/live" \
  -H "X-API-KEY: <YOUR_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
  "identity_ids": [
    "your-identity-uuid"
  ],
  "identity_mode": "direct",
  "input": {
    "custom_data": "example_value",
    "linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
    "sales_navigator_profile_id": "example_value"
  },
  "parameters": {
    "unfollow": true
  }
}'

Output Example

{
  "sales_navigator_profile_id": "example-123",
  "linkedin_profile_id": 42,
  "followed": true
}

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.