WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List followers

GET/api/linkedin/gateway/users/followers

Pages through people following the connected account. Optionally point it at someone else's profile instead to read their public follower list.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401. The account behind account_id must belong to your key.

Query parameters

FieldTypeDescription
account_id *stringWhich connected account to read followers from.
user_idstringA LinkedIn provider id to read someone else's followers instead of the account's own.
cursorstringThe cursor from a previous response, to continue paging.
limitintegerItems per page, 1–250.

Response fields

FieldTypeDescription
resultobjectitems[], each { object, id, urn, name, headline, profile_url, profile_picture_url, profile_picture_url_large }, plus cursor — pass it back as cursor to fetch the next page, null on the last one.
LinkedIn caps how deep a single follower list goes per page — around 100 when it's the account's own followers, less for someone else's — and this is another bulk read worth pacing rather than looping through every page at once.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/users/followers?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf&limit=50" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "UserFollowersList",
  "items": [
    {
      "object": "UserFollower",
      "id": "ACoAAABmb2xsb3dlcg",
      "urn": "urn:li:member:998877",
      "name": "Devon Park",
      "headline": "Product Marketing at Slate",
      "profile_url": "https://www.linkedin.com/in/devon-park",
      "profile_picture_url": null,
      "profile_picture_url_large": null
    }
  ],
  "cursor": "eyJvZmZzZXQiOjUwfQ=="
}
No key yet? Create one from Dashboard → API Keys.