WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List followed accounts

GET/api/linkedin/gateway/users/following

Pages through the people and pages the connected account follows — which, on LinkedIn, is a broader set than its first-degree connections, since following someone doesn't require them to accept anything.

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's following list to read.
cursorstringThe cursor from a previous response, to continue paging.
limitintegerItems per page, 1–1000.

Response fields

FieldTypeDescription
resultobjectitems[], each { object, first_name, last_name, headline, public_identifier, public_profile_url, created_at, member_id, member_urn, connection_urn, profile_picture_url? }, plus cursor — pass it back as cursor to fetch the next page, null on the last one.
As with relations, treat this as a bulk read to pace out — page through it gradually rather than looping through every cursor back-to-back.

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/following?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf&limit=50" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "UserRelationsList",
  "items": [
    {
      "object": "UserRelation",
      "first_name": "Marcus",
      "last_name": "Lee",
      "headline": "Founder at Northlight Studio",
      "public_identifier": "marcus-lee",
      "public_profile_url": "https://www.linkedin.com/in/marcus-lee",
      "created_at": 1725148800,
      "member_id": "ACoAAABmb2xsb3dpZA",
      "member_urn": "urn:li:member:222333",
      "connection_urn": "urn:li:connection:444555"
    }
  ],
  "cursor": null
}
No key yet? Create one from Dashboard → API Keys.