WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List a user's posts

GET/api/linkedin/gateway/users/{identifier}/posts

Pages through what a person or a company page has posted publicly — text, engagement counts, and links to reshare or comment on each one.

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.

Path parameters

FieldTypeDescription
identifier *stringThe author's internal id — people's ids start with ACo/ADo, company ids are numeric.

Query parameters

FieldTypeDescription
account_id *stringWhich connected account to read the posts as.
is_companybooleanSet true when identifier refers to a company page instead of a person.
cursorstringThe cursor from a previous response, to continue paging.
limitintegerItems per page, 1–100.

Response fields

FieldTypeDescription
resultobjectitems[], each with id, share_url, text, date, engagement counters (reaction_counter, comment_counter, repost_counter, impressions_counter), an author block, and a permissions block — plus a paging cursor. Reposts, polls, articles and job postings carry extra keys of their own on the same object.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.·404 Not Found. No such person or company.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/users/ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ/posts?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf&limit=25" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "PostList",
  "items": [
    {
      "provider": "LINKEDIN",
      "id": "urn:li:activity:7123456789012345678",
      "social_id": "urn:li:activity:7123456789012345678",
      "share_url": "https://www.linkedin.com/feed/update/urn:li:activity:7123456789012345678",
      "text": "Excited to share our Q3 roadmap update...",
      "date": "2026-08-20T10:00:00Z",
      "parsed_datetime": "2026-08-20T10:00:00Z",
      "reaction_counter": 214,
      "comment_counter": 18,
      "repost_counter": 6,
      "impressions_counter": 9820,
      "is_repost": false,
      "author": {
        "public_identifier": "satyanadella",
        "id": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
        "name": "Satya Nadella",
        "is_company": false,
        "headline": "Chairman and CEO at Microsoft"
      },
      "permissions": {
        "can_react": true,
        "can_share": true,
        "can_post_comments": true
      }
    }
  ],
  "cursor": "eyJvZmZzZXQiOjI1fQ=="
}
No key yet? Create one from Dashboard → API Keys.