WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List reactions on a post

GET/api/linkedin/gateway/posts/{post_id}/reactions

Pages through who reacted to a post, and what kind of reaction they left. Point comment_id at a comment instead to see reactions on that comment.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.

Path parameters

FieldTypeDescription
post_id *stringThe post's social_id, not necessarily the id visible in its URL.

Query parameters

FieldTypeDescription
account_id *stringA connected account's id.
comment_idstringList reactions on this comment instead of the post itself.
limitnumber1–100.
cursorstringFrom the previous page's paging.cursor, to continue paging.

Response fields

FieldTypeDescription
object"PostReactionList"Always this value.
items[].value"LIKE" | "PRAISE" | "APPRECIATION" | "EMPATHY" | "INTEREST" | "ENTERTAINMENT"Which reaction this is.
items[].authorobjectWho reacted — id, name, headline, and their network distance from the connected account.
pagingobject{ cursor, start, page_count, total_count }. cursor is null once exhausted.

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 post — or, if comment_id was set, no comment — exists for that id.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/posts/7123456789012345678/reactions?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf&limit=25" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "PostReactionList",
  "items": [
    {
      "object": "PostReaction",
      "value": "PRAISE",
      "post_id": "7123456789012345678",
      "author": {
        "id": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
        "type": "INDIVIDUAL",
        "name": "Jordan Lee",
        "headline": "Product Manager",
        "network_distance": "SECOND_DEGREE"
      }
    }
  ],
  "paging": {
    "cursor": "MnwxMDB8...",
    "start": 0,
    "page_count": 25,
    "total_count": 214
  }
}
No key yet? Create one from Dashboard → API Keys.